Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. Contributing
  2. ============
  3. Please refer to the contributor guide for all the details:
  4. https://wiki.eclipse.org/EGit/Contributor_Guide
  5. Reporting bugs
  6. --------------
  7. For anything other than small changes, it's a good idea to open a bug
  8. report for it (in case one doesn't already exist). This gives others the
  9. chance to give input and is useful for tracking. Create one here:
  10. https://bugs.eclipse.org/bugs/enter_bug.cgi?product=JGit
  11. Submitting changes
  12. ------------------
  13. We use Gerrit to review all changes by committers or contributors before
  14. they are merged:
  15. https://git.eclipse.org/r/
  16. Make sure you have an account and have set up the `commit-msg` hook
  17. before committing.
  18. When committing your changes, see the contributor guide or other commits
  19. on what your commit message should include.
  20. Run the following to push your change for review (with `username`
  21. replaced by your Gerrit username):
  22. git push ssh://username@git.eclipse.org:29418/jgit/jgit.git HEAD:refs/for/master
  23. Add the link to the review as a comment on the bug report, so that
  24. people coming from the bug report can find it.
  25. Then wait for someone to review your change. If there is something to be
  26. corrected, amend your commit and push it again.
  27. Have fun :).