git.txt 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237
  1. =================================
  2. The Django source code repository
  3. =================================
  4. When deploying a Django application into a real production environment, you
  5. will almost always want to use `an official packaged release of Django`_.
  6. However, if you'd like to try out in-development code from an upcoming release
  7. or contribute to the development of Django, you'll need to obtain a clone of
  8. Django's source code repository.
  9. This document covers the way the code repository is laid out and how to work
  10. with and find things in it.
  11. .. _an official packaged release of Django: https://www.djangoproject.com/download/
  12. High-level overview
  13. ===================
  14. The Django source code repository uses `Git`_ to track changes to the code
  15. over time, so you'll need a copy of the Git client (a program called ``git``)
  16. on your computer, and you'll want to familiarize yourself with the basics of
  17. how Git works.
  18. Git's web site offers downloads for various operating systems. The site also
  19. contains vast amounts of `documentation`_.
  20. The Django Git repository is located online at `github.com/django/django
  21. <https://github.com/django/django>`_. It contains the full source code for all
  22. Django releases, which you can browse online.
  23. The Git repository includes several `branches`_:
  24. * ``master`` contains the main in-development code which will become
  25. the next packaged release of Django. This is where most development
  26. activity is focused.
  27. * ``stable/A.B.x`` are the maintenance branches. They are used to support
  28. older versions of Django.
  29. * ``soc20XX/<project>`` branches were used by students who worked on Django
  30. during the 2009 and 2010 Google Summer of Code programs.
  31. * ``attic/<project>`` branches were used to develop major or experimental new
  32. features without affecting the rest of Django's code.
  33. The Git repository also contains `tags`_. These are the exact revisions from
  34. which packaged Django releases were produced, since version 1.0.
  35. The source code for the `Djangoproject.com <https://www.djangoproject.com/>`_ web
  36. site can be found at `github.com/django/djangoproject.com
  37. <https://github.com/django/djangoproject.com>`_.
  38. .. _Git: http://git-scm.com/
  39. .. _documentation: http://git-scm.com/documentation
  40. .. _branches: https://github.com/django/django/branches
  41. .. _tags: https://github.com/django/django/tags
  42. The master branch
  43. =================
  44. If you'd like to try out the in-development code for the next release of
  45. Django, or if you'd like to contribute to Django by fixing bugs or developing
  46. new features, you'll want to get the code from the master branch.
  47. Note that this will get *all* of Django: in addition to the top-level
  48. ``django`` module containing Python code, you'll also get a copy of Django's
  49. documentation, test suite, packaging scripts and other miscellaneous bits.
  50. Django's code will be present in your clone as a directory named
  51. ``django``.
  52. To try out the in-development code with your own applications, simply place
  53. the directory containing your clone on your Python import path. Then
  54. ``import`` statements which look for Django will find the ``django`` module
  55. within your clone.
  56. If you're going to be working on Django's code (say, to fix a bug or
  57. develop a new feature), you can probably stop reading here and move
  58. over to :doc:`the documentation for contributing to Django
  59. </internals/contributing/index>`, which covers things like the preferred
  60. coding style and how to generate and submit a patch.
  61. Other branches
  62. ==============
  63. Django uses branches for two main purposes:
  64. 1. Development of major or experimental features, to keep them from
  65. affecting progress on other work in master.
  66. 2. Security and bugfix support for older releases of Django, during
  67. their support lifetimes.
  68. Feature-development branches
  69. ----------------------------
  70. .. admonition:: Historical information
  71. Since Django moved to Git in 2012, anyone can clone the repository and
  72. create his own branches, alleviating the need for official branches in the
  73. source code repository.
  74. The following section is mostly useful if you're exploring the repository's
  75. history, for example if you're trying to understand how some features were
  76. designed.
  77. Feature-development branches tend by their nature to be temporary. Some
  78. produce successful features which are merged back into Django's master to
  79. become part of an official release, but others do not; in either case there
  80. comes a time when the branch is no longer being actively worked on by any
  81. developer. At this point the branch is considered closed.
  82. Unfortunately, Django used to be maintained with the Subversion revision
  83. control system, that has no standard way of indicating this. As a workaround,
  84. branches of Django which are closed and no longer maintained were moved into
  85. ``attic``.
  86. For reference, the following are branches whose code eventually became
  87. part of Django itself, and so are no longer separately maintained:
  88. * ``boulder-oracle-sprint``: Added support for Oracle databases to
  89. Django's object-relational mapper. This has been part of Django
  90. since the 1.0 release.
  91. * ``gis``: Added support for geographic/spatial queries to Django's
  92. object-relational mapper. This has been part of Django since the 1.0
  93. release, as the bundled application ``django.contrib.gis``.
  94. * ``i18n``: Added :doc:`internationalization support </topics/i18n/index>` to
  95. Django. This has been part of Django since the 0.90 release.
  96. * ``magic-removal``: A major refactoring of both the internals and
  97. public APIs of Django's object-relational mapper. This has been part
  98. of Django since the 0.95 release.
  99. * ``multi-auth``: A refactoring of :doc:`Django's bundled
  100. authentication framework </topics/auth>` which added support for
  101. :ref:`authentication backends <authentication-backends>`. This has
  102. been part of Django since the 0.95 release.
  103. * ``new-admin``: A refactoring of :doc:`Django's bundled
  104. administrative application </ref/contrib/admin/index>`. This became part of
  105. Django as of the 0.91 release, but was superseded by another
  106. refactoring (see next listing) prior to the Django 1.0 release.
  107. * ``newforms-admin``: The second refactoring of Django's bundled
  108. administrative application. This became part of Django as of the 1.0
  109. release, and is the basis of the current incarnation of
  110. ``django.contrib.admin``.
  111. * ``queryset-refactor``: A refactoring of the internals of Django's
  112. object-relational mapper. This became part of Django as of the 1.0
  113. release.
  114. * ``unicode``: A refactoring of Django's internals to consistently use
  115. Unicode-based strings in most places within Django and Django
  116. applications. This became part of Django as of the 1.0 release.
  117. When Django moved from SVN to Git, the information about branch merges wasn't
  118. preserved in the source code repository. This means that the ``master`` branch
  119. of Django doesn't contain merge commits for the above branches.
  120. However, this information is `available as a grafts file`_. You can restore it
  121. by putting the following lines in ``.git/info/grafts`` in your local clone::
  122. ac64e91a0cadc57f4bc5cd5d66955832320ca7a1 553a20075e6991e7a60baee51ea68c8adc520d9a 0cb8e31823b2e9f05c4ae868c19f5f38e78a5f2e
  123. 79e68c225b926302ebb29c808dda8afa49856f5c d0f57e7c7385a112cb9e19d314352fc5ed5b0747 aa239e3e5405933af6a29dac3cf587b59a099927
  124. 5cf8f684237ab5addaf3549b2347c3adf107c0a7 cb45fd0ae20597306cd1f877efc99d9bd7cbee98 e27211a0deae2f1d402537f0ebb64ad4ccf6a4da
  125. f69cf70ed813a8cd7e1f963a14ae39103e8d5265 d5dbeaa9be359a4c794885c2e9f1b5a7e5e51fb8 d2fcbcf9d76d5bb8a661ee73dae976c74183098b
  126. aab3a418ac9293bb4abd7670f65d930cb0426d58 4ea7a11659b8a0ab07b0d2e847975f7324664f10 adf4b9311d5d64a2bdd58da50271c121ea22e397
  127. ff60c5f9de3e8690d1e86f3e9e3f7248a15397c8 7ef212af149540aa2da577a960d0d87029fd1514 45b4288bb66a3cda401b45901e85b645674c3988
  128. 9dda4abee1225db7a7b195b84c915fdd141a7260 4fe5c9b7ee09dc25921918a6dbb7605edb374bc9 3a7c14b583621272d4ef53061287b619ce3c290d
  129. a19ed8aea395e8e07164ff7d85bd7dff2f24edca dc375fb0f3b7fbae740e8cfcd791b8bccb8a4e66 42ea7a5ce8aece67d16c6610a49560c1493d4653
  130. 9c52d56f6f8a9cdafb231adf9f4110473099c9b5 c91a30f00fd182faf8ca5c03cd7dbcf8b735b458 4a5c5c78f2ecd4ed8859cd5ac773ff3a01bccf96
  131. 953badbea5a04159adbfa970f5805c0232b6a401 4c958b15b250866b70ded7d82aa532f1e57f96ae 5664a678b29ab04cad425c15b2792f4519f43928
  132. 471596fc1afcb9c6258d317c619eaf5fd394e797 4e89105d64bb9e04c409139a41e9c7aac263df4c 3e9035a9625c8a8a5e88361133e87ce455c4fc13
  133. 9233d0426537615e06b78d28010d17d5a66adf44 6632739e94c6c38b4c5a86cf5c80c48ae50ac49f 18e151bc3f8a85f2766d64262902a9fcad44d937
  134. .. _available as a grafts file: https://github.com/ramiro/django-git-grafts
  135. Additionally, the following branches are closed, but their code was
  136. never merged into Django and the features they aimed to implement
  137. were never finished:
  138. * ``full-history``
  139. * ``generic-auth``
  140. * ``multiple-db-support``
  141. * ``per-object-permissions``
  142. * ``schema-evolution``
  143. * ``schema-evolution-ng``
  144. * ``search-api``
  145. * ``sqlalchemy``
  146. All of the above-mentioned branches now reside in ``attic``.
  147. Finally, the repository contains ``soc2009/xxx`` and ``soc2010/xxx`` feature
  148. branches, used for Google Summer of Code projects.
  149. Support and bugfix branches
  150. ---------------------------
  151. In addition to fixing bugs in current master, the Django project provides
  152. official bugfix support for the most recent released version of Django, and
  153. security support for the two most recently-released versions of Django.
  154. This support is provided via branches in which the necessary bug or security
  155. fixes are applied; the branches are then used as the basis for issuing bugfix
  156. or security releases.
  157. These branches can be found in the repository as ``stable/A.B.x``
  158. branches, and new branches will be created there after each new Django
  159. release.
  160. For example, shortly after the release of Django 1.0, the branch
  161. ``stable/1.0.x`` was created to receive bug fixes, and shortly after the
  162. release of Django 1.1 the branch ``stable/1.1.x`` was created.
  163. Official support for the above mentioned releases has expired, and so they no
  164. longer receive direct maintenance from the Django project. However, the
  165. branches continue to exist and interested community members have occasionally
  166. used them to provide unofficial support for old Django releases.
  167. Tags
  168. ====
  169. Each Django release is tagged and signed by Django's release manager.
  170. The tags can be found on GitHub's `tags`_ page.
  171. .. _tags: https://github.com/django/django/tags