working-with-git.txt 10 KB

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