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 :ref:`mergers <mergers-team>` handle
  6. them, see :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. <https://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 set up 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: https://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 https://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 set up ``django/django`` as an "upstream" remote (that is, tell
  42. git that the reference Django repository was the source of your fork of it)::
  43. git remote add upstream https://github.com/django/django.git
  44. git fetch upstream
  45. You can add other remotes similarly, for example::
  46. git remote add akaariai https://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/main``::
  51. git checkout -b ticket_xxxxx upstream/main
  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 merger. If you're
  61. uncomfortable with English, try at least to describe precisely what the commit
  62. 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 by running::
  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 ``main`` 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 merger who
  97. will deal with your pull request has only two options: merge it or close it.
  98. For this reason, it isn't useful to make a pull request until the code is ready
  99. for merging -- or sufficiently close that a merger will finish it themselves.
  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-push
  128. 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 commit
  132. hashes do not match anymore. This is acceptable, as the branch is a topic
  133. 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/main``.
  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 merger 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/main
  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 mergers <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``.