working-with-git.txt 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276
  1. ===========================
  2. Working with Git and GitHub
  3. ===========================
  4. This section explains how the community can contribute code to Django via pull
  5. requests. If you're interested in how core developers handle them, see
  6. :doc:`../committing-code`.
  7. Below, we are going to show how to create a GitHub pull request containing the
  8. changes for Trac ticket #xxxxx. By creating a fully-ready pull request, you
  9. will make the reviewer's job easier, meaning that your work is more likely to
  10. be merged into Django.
  11. You could also upload a traditional patch to Trac, but it's less practical for
  12. reviews.
  13. Installing Git
  14. ==============
  15. Django uses `Git`_ for its source control. You can `download
  16. <http://git-scm.com/download>`_ Git, but it's often easier to install with
  17. your operating system's package manager.
  18. Django's `Git repository`_ is hosted on `GitHub`_, and it is recommended
  19. that you also work using GitHub.
  20. After installing Git, the first thing you should do is setup your name and
  21. email::
  22. $ git config --global user.name "Your Real Name"
  23. $ git config --global user.email "you@email.com"
  24. Note that ``user.name`` should be your real name, not your GitHub nick. GitHub
  25. should know the email you use in the ``user.email`` field, as this will be
  26. used to associate your commits with your GitHub account.
  27. .. _Git: http://git-scm.com/
  28. .. _Git repository: https://github.com/django/django/
  29. .. _GitHub: https://github.com/
  30. Setting up local repository
  31. ===========================
  32. When you have created your GitHub account, with the nick "GitHub_nick", and
  33. `forked Django's repository <https://github.com/django/django/fork>`__,
  34. create a local copy of your fork::
  35. git clone git@github.com:GitHub_nick/django.git
  36. This will create a new directory "django", containing a clone of your GitHub
  37. repository. The rest of the git commands on this page need to be run within the
  38. cloned directory, so switch to it now::
  39. cd django
  40. Your GitHub repository will be called "origin" in Git.
  41. You should also setup django/django as an "upstream" remote (that is, tell git
  42. that the reference Django repository was the source of your fork of it)::
  43. git remote add upstream git@github.com:django/django.git
  44. git fetch upstream
  45. You can add other remotes similarly, for example::
  46. git remote add akaariai git@github.com:akaariai/django.git
  47. Working on a ticket
  48. ===================
  49. When working on a ticket, create a new branch for the work, and base that work
  50. on upstream/master::
  51. git checkout -b ticket_xxxxx upstream/master
  52. The -b flag creates a new branch for you locally. Don't hesitate to create new
  53. branches even for the smallest things - that's what they are there for.
  54. If instead you were working for a fix on the 1.4 branch, you would do::
  55. git checkout -b ticket_xxxxx_1_4 upstream/stable/1.4.x
  56. Assume the work is carried on the ticket_xxxxx branch. Make some changes and
  57. commit them::
  58. git commit
  59. When writing the commit message, follow the :ref:`commit message
  60. guidelines <committing-guidelines>` to ease the work of the committer. If
  61. you're uncomfortable with English, try at least to describe precisely what the
  62. commit does.
  63. If you need to do additional work on your branch, commit as often as
  64. necessary::
  65. git commit -m 'Added two more tests for edge cases'
  66. Publishing work
  67. ---------------
  68. You can publish your work on GitHub just by doing::
  69. git push origin ticket_xxxxx
  70. When you go to your GitHub page, you will notice a new branch has been created.
  71. If you are working on a Trac ticket, you should mention in the ticket that
  72. your work is available from branch ticket_xxxxx of your GitHub repo. Include a
  73. link to your branch.
  74. Note that the above branch is called a "topic branch" in Git parlance. You are
  75. free to rewrite the history of this branch, by using ``git rebase`` for
  76. example. Other people shouldn't base their work on such a branch, because
  77. their clone would become corrupt when you edit commits.
  78. There are also "public branches". These are branches other people are supposed
  79. to fork, so the history of these branches should never change. Good examples
  80. of public branches are the ``master`` and ``stable/A.B.x`` branches in the
  81. django/django repository.
  82. When you think your work is ready to be pulled into Django, you should create
  83. a pull request at GitHub. A good pull request means:
  84. * commits with one logical change in each, following the
  85. :doc:`coding style <coding-style>`,
  86. * well-formed messages for each commit: a summary line and then paragraphs
  87. wrapped at 72 characters thereafter -- see the :ref:`committing guidelines
  88. <committing-guidelines>` for more details,
  89. * documentation and tests, if needed -- actually tests are always needed,
  90. except for documentation changes.
  91. The test suite must pass and the documentation must build without warnings.
  92. Once you have created your pull request, you should add a comment in the
  93. related Trac ticket explaining what you've done. In particular, you should note
  94. the environment in which you ran the tests, for instance: "all tests pass
  95. under SQLite and MySQL".
  96. Pull requests at GitHub have only two states: open and closed. The committer
  97. who will deal with your pull request has only two options: merge it or close
  98. it. For this reason, it isn't useful to make a pull request until the code is
  99. ready for merging -- or sufficiently close that a committer will finish it
  100. himself.
  101. Rebasing branches
  102. -----------------
  103. In the example above, you created two commits, the "Fixed ticket_xxxxx" commit
  104. and "Added two more tests" commit.
  105. We do not want to have the entire history of your working process in your
  106. repository. Your commit "Added two more tests" would be unhelpful noise.
  107. Instead, we would rather only have one commit containing all your work.
  108. To rework the history of your branch you can squash the commits into one by
  109. using interactive rebase::
  110. git rebase -i HEAD~2
  111. The HEAD~2 above is shorthand for two latest commits. The above command
  112. will open an editor showing the two commits, prefixed with the word "pick".
  113. Change "pick" on the second line to "squash" instead. This will keep the
  114. first commit, and squash the second commit into the first one. Save and quit
  115. the editor. A second editor window should open, so you can reword the
  116. commit message for the commit now that it includes both your steps.
  117. You can also use the "edit" option in rebase. This way you can change a single
  118. commit, for example to fix a typo in a docstring::
  119. git rebase -i HEAD~3
  120. # Choose edit, pick, pick for the commits
  121. # Now you are able to rework the commit (use git add normally to add changes)
  122. # When finished, commit work with "--amend" and continue
  123. git commit --amend
  124. # Reword the commit message if needed
  125. git rebase --continue
  126. # The second and third commits should be applied.
  127. If your topic branch is already published at GitHub, for example if you're
  128. making minor changes to take into account a review, you will need to force-push
  129. the changes::
  130. git push -f origin ticket_xxxxx
  131. Note that this will rewrite history of ticket_xxxxx - if you check the commit
  132. hashes before and after the operation at GitHub you will notice that the
  133. commit hashes do not match anymore. This is acceptable, as the branch is merely
  134. a topic branch, and nobody should be basing their work on it.
  135. After upstream has changed
  136. --------------------------
  137. When upstream (django/django) has changed, you should rebase your work. To
  138. do this, use::
  139. git fetch upstream
  140. git rebase
  141. The work is automatically rebased using the branch you forked on, in the
  142. example case using upstream/master.
  143. The rebase command removes all your local commits temporarily, applies the
  144. upstream commits, and then applies your local commits again on the work.
  145. If there are merge conflicts, you will need to resolve them and then use ``git
  146. rebase --continue``. At any point you can use ``git rebase --abort`` to return
  147. to the original state.
  148. Note that you want to *rebase* on upstream, not *merge* the upstream.
  149. The reason for this is that by rebasing, your commits will always be *on
  150. top of* the upstream's work, not *mixed in with* the changes in the upstream.
  151. This way your branch will contain only commits related to its topic, which
  152. makes squashing easier.
  153. After review
  154. ------------
  155. It is unusual to get any non-trivial amount of code into core without changes
  156. requested by reviewers. In this case, it is often a good idea to add the
  157. changes as one incremental commit to your work. This allows the reviewer to
  158. easily check what changes you have done.
  159. In this case, do the changes required by the reviewer. Commit as often as
  160. necessary. Before publishing the changes, rebase your work. If you added two
  161. commits, you would run::
  162. git rebase -i HEAD~2
  163. Squash the second commit into the first. Write a commit message along the lines
  164. of::
  165. Made changes asked in review by <reviewer>
  166. - Fixed whitespace errors in foobar
  167. - Reworded the docstring of bar()
  168. Finally, push your work back to your GitHub repository. Since you didn't touch
  169. the public commits during the rebase, you should not need to force-push::
  170. git push origin ticket_xxxxx
  171. Your pull request should now contain the new commit too.
  172. Note that the committer is likely to squash the review commit into the previous
  173. commit when committing the code.
  174. Working on a patch
  175. ==================
  176. One of the ways that developers can contribute to Django is by reviewing
  177. patches. Those patches will typically exist as pull requests on GitHub and
  178. can be easily integrated into your local repository::
  179. git checkout -b pull_xxxxx upstream/master
  180. curl https://github.com/django/django/pull/xxxxx.patch | git am
  181. This will create a new branch and then apply the changes from the pull request
  182. to it. At this point you can run the tests or do anything else you need to
  183. do to investigate the quality of the patch.
  184. For more detail on working with pull requests see the
  185. :ref:`guidelines for committers <handling-pull-requests>`.
  186. Summary
  187. =======
  188. * Work on GitHub if you can.
  189. * Announce your work on the Trac ticket by linking to your GitHub branch.
  190. * When you have something ready, make a pull request.
  191. * Make your pull requests as good as you can.
  192. * When doing fixes to your work, use ``git rebase -i`` to squash the commits.
  193. * When upstream has changed, do ``git fetch upstream; git rebase``.