{"title":"The Django source code repository","version":"1.8","locale":"en","docname":"internals/git","url":"/en/1.8/internals/git/","canonical":"https://djangodocs.dev/en/1.8/internals/git/","summary":"When deploying a Django application into a real production environment, you will almost always want to use an official packaged release of Django . However, if…","html":"<h1>The Django source code repository<a class=\"heading-anchor\" href=\"#the-django-source-code-repository\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h1>\n<p>When deploying a Django application into a real production environment, you\nwill almost always want to use <a class=\"reference external\" href=\"https://www.djangoproject.com/download/\">an official packaged release of Django</a>.</p>\n<p>However, if you’d like to try out in-development code from an upcoming release\nor contribute to the development of Django, you’ll need to obtain a clone of\nDjango’s source code repository.</p>\n<p>This document covers the way the code repository is laid out and how to work\nwith and find things in it.</p>\n<section id=\"high-level-overview\">\n<h2>High-level overview<a class=\"heading-anchor\" href=\"#high-level-overview\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>The Django source code repository uses <a class=\"reference external\" href=\"http://git-scm.com/\">Git</a> to track changes to the code\nover time, so you’ll need a copy of the Git client (a program called <code class=\"docutils literal notranslate\"><span class=\"pre\">git</span></code>)\non your computer, and you’ll want to familiarize yourself with the basics of\nhow Git works.</p>\n<p>Git’s web site offers downloads for various operating systems. The site also\ncontains vast amounts of <a class=\"reference external\" href=\"http://git-scm.com/documentation\">documentation</a>.</p>\n<p>The Django Git repository is located online at <a class=\"reference external\" href=\"https://github.com/django/django\">github.com/django/django</a>. It contains the full source code for all\nDjango releases, which you can browse online.</p>\n<p>The Git repository includes several <a class=\"reference external\" href=\"https://github.com/django/django/branches\">branches</a>:</p>\n<ul class=\"simple\">\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">master</span></code> contains the main in-development code which will become\nthe next packaged release of Django. This is where most development\nactivity is focused.</p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">stable/A.B.x</span></code> are the branches where release preparation work happens.\nThey are also used for support and bugfix releases which occur as necessary\nafter the initial release of a major or minor version.</p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">soc20XX/&lt;project&gt;</span></code> branches were used by students who worked on Django\nduring the 2009 and 2010 Google Summer of Code programs.</p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">attic/&lt;project&gt;</span></code> branches were used to develop major or experimental new\nfeatures without affecting the rest of Django’s code.</p></li>\n</ul>\n<p>The Git repository also contains <a class=\"reference external\" href=\"https://github.com/django/django/tags\">tags</a>. These are the exact revisions from\nwhich packaged Django releases were produced, since version 1.0.</p>\n<p>The source code for the <a class=\"reference external\" href=\"https://www.djangoproject.com/\">Djangoproject.com</a> web\nsite can be found at <a class=\"reference external\" href=\"https://github.com/django/djangoproject.com\">github.com/django/djangoproject.com</a>.</p>\n</section>\n<section id=\"the-master-branch\">\n<h2>The master branch<a class=\"heading-anchor\" href=\"#the-master-branch\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>If you’d like to try out the in-development code for the next release of\nDjango, or if you’d like to contribute to Django by fixing bugs or developing\nnew features, you’ll want to get the code from the master branch.</p>\n<p>Note that this will get <em>all</em> of Django: in addition to the top-level\n<code class=\"docutils literal notranslate\"><span class=\"pre\">django</span></code> module containing Python code, you’ll also get a copy of Django’s\ndocumentation, test suite, packaging scripts and other miscellaneous bits.\nDjango’s code will be present in your clone as a directory named\n<code class=\"docutils literal notranslate\"><span class=\"pre\">django</span></code>.</p>\n<p>To try out the in-development code with your own applications, simply place\nthe directory containing your clone on your Python import path. Then\n<code class=\"docutils literal notranslate\"><span class=\"pre\">import</span></code> statements which look for Django will find the <code class=\"docutils literal notranslate\"><span class=\"pre\">django</span></code> module\nwithin your clone.</p>\n<p>If you’re going to be working on Django’s code (say, to fix a bug or\ndevelop a new feature), you can probably stop reading here and move\nover to <a class=\"reference internal\" href=\"/en/1.8/internals/contributing/\"><span class=\"doc\">the documentation for contributing to Django</span></a>, which covers things like the preferred\ncoding style and how to generate and submit a patch.</p>\n</section>\n<section id=\"other-branches\">\n<h2>Other branches<a class=\"heading-anchor\" href=\"#other-branches\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>Django uses branches to prepare for releases of Django (whether they be\n<a class=\"reference internal\" href=\"/en/1.8/internals/release-process/#term-Major-release\"><span class=\"xref std std-term\">major</span></a> or <a class=\"reference internal\" href=\"/en/1.8/internals/release-process/#term-Minor-release\"><span class=\"xref std std-term\">minor</span></a>).</p>\n<p>In the past when Django was hosted on Subversion, branches were also used for\nfeature development. Now Django is hosted on Git and feature development is\ndone on contributor’s forks, but the Subversion feature branches remain in Git\nfor historical reference.</p>\n<section id=\"stable-branches\">\n<h3>Stable branches<a class=\"heading-anchor\" href=\"#stable-branches\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<p>These branches can be found in the repository as <code class=\"docutils literal notranslate\"><span class=\"pre\">stable/A.B.x</span></code>\nbranches and will be created right after the first alpha is tagged.</p>\n<p>For example, immediately after <em>Django 1.5 alpha 1</em> was tagged, the branch\n<code class=\"docutils literal notranslate\"><span class=\"pre\">stable/1.5.x</span></code> was created and all further work on preparing the code for the\nfinal 1.5 release was done there.</p>\n<p>These branches also provide limited bugfix support for the most recent released\nversion of Django and security support for the two most recently-released\nversions of Django.</p>\n<p>For example, after the release of Django 1.5, the branch <code class=\"docutils literal notranslate\"><span class=\"pre\">stable/1.5.x</span></code>\nreceives only fixes for security and critical stability bugs, which are\neventually released as Django 1.5.1 and so on, <code class=\"docutils literal notranslate\"><span class=\"pre\">stable/1.4.x</span></code> receives only\nsecurity fixes, and <code class=\"docutils literal notranslate\"><span class=\"pre\">stable/1.3.x</span></code> no longer receives any updates.</p>\n<aside class=\"admonition-historical-information admonition\">\n<p class=\"admonition-title\">Historical information</p>\n<p>This policy for handling <code class=\"docutils literal notranslate\"><span class=\"pre\">stable/A.B.x</span></code> branches was adopted starting\nwith the Django 1.5 release cycle.</p>\n<p>Previously, these branches weren’t created until right after the releases\nand the stabilization work occurred on the main repository branch. Thus,\nno new features development work for the next release of Django could be\ncommitted until the final release happened.</p>\n<p>For example, shortly after the release of Django 1.3 the branch\n<code class=\"docutils literal notranslate\"><span class=\"pre\">stable/1.3.x</span></code> was created. Official support for that release has expired,\nand so it no longer receives direct maintenance from the Django project.\nHowever, that and all other similarly named branches continue to exist and\ninterested community members have occasionally used them to provide\nunofficial support for old Django releases.</p>\n</aside>\n</section>\n<section id=\"feature-development-branches\">\n<h3>Feature-development branches<a class=\"heading-anchor\" href=\"#feature-development-branches\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h3>\n<aside class=\"admonition-historical-information admonition\">\n<p class=\"admonition-title\">Historical information</p>\n<p>Since Django moved to Git in 2012, anyone can clone the repository and\ncreate their own branches, alleviating the need for official branches in\nthe source code repository.</p>\n<p>The following section is mostly useful if you’re exploring the repository’s\nhistory, for example if you’re trying to understand how some features were\ndesigned.</p>\n</aside>\n<p>Feature-development branches tend by their nature to be temporary. Some\nproduce successful features which are merged back into Django’s master to\nbecome part of an official release, but others do not; in either case there\ncomes a time when the branch is no longer being actively worked on by any\ndeveloper. At this point the branch is considered closed.</p>\n<p>Unfortunately, Django used to be maintained with the Subversion revision\ncontrol system, that has no standard way of indicating this. As a workaround,\nbranches of Django which are closed and no longer maintained were moved into\n<code class=\"docutils literal notranslate\"><span class=\"pre\">attic</span></code>.</p>\n<p>For reference, the following are branches whose code eventually became\npart of Django itself, and so are no longer separately maintained:</p>\n<ul class=\"simple\">\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">boulder-oracle-sprint</span></code>: Added support for Oracle databases to\nDjango’s object-relational mapper. This has been part of Django\nsince the 1.0 release.</p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">gis</span></code>: Added support for geographic/spatial queries to Django’s\nobject-relational mapper. This has been part of Django since the 1.0\nrelease, as the bundled application <code class=\"docutils literal notranslate\"><span class=\"pre\">django.contrib.gis</span></code>.</p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">i18n</span></code>: Added <a class=\"reference internal\" href=\"/en/1.8/topics/i18n/\"><span class=\"doc\">internationalization support</span></a> to\nDjango. This has been part of Django since the 0.90 release.</p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">magic-removal</span></code>: A major refactoring of both the internals and\npublic APIs of Django’s object-relational mapper. This has been part\nof Django since the 0.95 release.</p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">multi-auth</span></code>: A refactoring of <a class=\"reference internal\" href=\"/en/1.8/topics/auth/\"><span class=\"doc\">Django’s bundled\nauthentication framework</span></a> which added support for\n<a class=\"reference internal\" href=\"/en/1.8/topics/auth/customizing/#authentication-backends\"><span class=\"std std-ref\">authentication backends</span></a>. This has\nbeen part of Django since the 0.95 release.</p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">new-admin</span></code>: A refactoring of <a class=\"reference internal\" href=\"/en/1.8/ref/contrib/admin/\"><span class=\"doc\">Django’s bundled\nadministrative application</span></a>. This became part of\nDjango as of the 0.91 release, but was superseded by another\nrefactoring (see next listing) prior to the Django 1.0 release.</p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">newforms-admin</span></code>: The second refactoring of Django’s bundled\nadministrative application. This became part of Django as of the 1.0\nrelease, and is the basis of the current incarnation of\n<code class=\"docutils literal notranslate\"><span class=\"pre\">django.contrib.admin</span></code>.</p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">queryset-refactor</span></code>: A refactoring of the internals of Django’s\nobject-relational mapper. This became part of Django as of the 1.0\nrelease.</p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">unicode</span></code>: A refactoring of Django’s internals to consistently use\nUnicode-based strings in most places within Django and Django\napplications. This became part of Django as of the 1.0 release.</p></li>\n</ul>\n<p>When Django moved from SVN to Git, the information about branch merges wasn’t\npreserved in the source code repository. This means that the <code class=\"docutils literal notranslate\"><span class=\"pre\">master</span></code> branch\nof Django doesn’t contain merge commits for the above branches.</p>\n<p>However, this information is <a class=\"reference external\" href=\"https://github.com/ramiro/django-git-grafts\">available as a grafts file</a>. You can restore it\nby putting the following lines in <code class=\"docutils literal notranslate\"><span class=\"pre\">.git/info/grafts</span></code> in your local clone:</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code><span class=\"n\">ac64e91a0cadc57f4bc5cd5d66955832320ca7a1</span> <span class=\"mi\">553</span><span class=\"n\">a20075e6991e7a60baee51ea68c8adc520d9a</span> <span class=\"mi\">0</span><span class=\"n\">cb8e31823b2e9f05c4ae868c19f5f38e78a5f2e</span>\n<span class=\"mf\">79e68</span><span class=\"n\">c225b926302ebb29c808dda8afa49856f5c</span> <span class=\"n\">d0f57e7c7385a112cb9e19d314352fc5ed5b0747</span> <span class=\"n\">aa239e3e5405933af6a29dac3cf587b59a099927</span>\n<span class=\"mi\">5</span><span class=\"n\">cf8f684237ab5addaf3549b2347c3adf107c0a7</span> <span class=\"n\">cb45fd0ae20597306cd1f877efc99d9bd7cbee98</span> <span class=\"n\">e27211a0deae2f1d402537f0ebb64ad4ccf6a4da</span>\n<span class=\"n\">f69cf70ed813a8cd7e1f963a14ae39103e8d5265</span> <span class=\"n\">d5dbeaa9be359a4c794885c2e9f1b5a7e5e51fb8</span> <span class=\"n\">d2fcbcf9d76d5bb8a661ee73dae976c74183098b</span>\n<span class=\"n\">aab3a418ac9293bb4abd7670f65d930cb0426d58</span> <span class=\"mi\">4</span><span class=\"n\">ea7a11659b8a0ab07b0d2e847975f7324664f10</span> <span class=\"n\">adf4b9311d5d64a2bdd58da50271c121ea22e397</span>\n<span class=\"n\">ff60c5f9de3e8690d1e86f3e9e3f7248a15397c8</span> <span class=\"mi\">7</span><span class=\"n\">ef212af149540aa2da577a960d0d87029fd1514</span> <span class=\"mi\">45</span><span class=\"n\">b4288bb66a3cda401b45901e85b645674c3988</span>\n<span class=\"mi\">9</span><span class=\"n\">dda4abee1225db7a7b195b84c915fdd141a7260</span> <span class=\"mi\">4</span><span class=\"n\">fe5c9b7ee09dc25921918a6dbb7605edb374bc9</span> <span class=\"mi\">3</span><span class=\"n\">a7c14b583621272d4ef53061287b619ce3c290d</span>\n<span class=\"n\">a19ed8aea395e8e07164ff7d85bd7dff2f24edca</span> <span class=\"n\">dc375fb0f3b7fbae740e8cfcd791b8bccb8a4e66</span> <span class=\"mi\">42</span><span class=\"n\">ea7a5ce8aece67d16c6610a49560c1493d4653</span>\n<span class=\"mi\">9</span><span class=\"n\">c52d56f6f8a9cdafb231adf9f4110473099c9b5</span> <span class=\"n\">c91a30f00fd182faf8ca5c03cd7dbcf8b735b458</span> <span class=\"mi\">4</span><span class=\"n\">a5c5c78f2ecd4ed8859cd5ac773ff3a01bccf96</span>\n<span class=\"mi\">953</span><span class=\"n\">badbea5a04159adbfa970f5805c0232b6a401</span> <span class=\"mi\">4</span><span class=\"n\">c958b15b250866b70ded7d82aa532f1e57f96ae</span> <span class=\"mi\">5664</span><span class=\"n\">a678b29ab04cad425c15b2792f4519f43928</span>\n<span class=\"mi\">471596</span><span class=\"n\">fc1afcb9c6258d317c619eaf5fd394e797</span> <span class=\"mf\">4e89105</span><span class=\"n\">d64bb9e04c409139a41e9c7aac263df4c</span> <span class=\"mf\">3e9035</span><span class=\"n\">a9625c8a8a5e88361133e87ce455c4fc13</span>\n<span class=\"mi\">9233</span><span class=\"n\">d0426537615e06b78d28010d17d5a66adf44</span> <span class=\"mf\">6632739e94</span><span class=\"n\">c6c38b4c5a86cf5c80c48ae50ac49f</span> <span class=\"mf\">18e151</span><span class=\"n\">bc3f8a85f2766d64262902a9fcad44d937</span>\n</code></pre></div>\n<p>Additionally, the following branches are closed, but their code was\nnever merged into Django and the features they aimed to implement\nwere never finished:</p>\n<ul class=\"simple\">\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">full-history</span></code></p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">generic-auth</span></code></p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">multiple-db-support</span></code></p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">per-object-permissions</span></code></p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">schema-evolution</span></code></p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">schema-evolution-ng</span></code></p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">search-api</span></code></p></li>\n<li><p><code class=\"docutils literal notranslate\"><span class=\"pre\">sqlalchemy</span></code></p></li>\n</ul>\n<p>All of the above-mentioned branches now reside in <code class=\"docutils literal notranslate\"><span class=\"pre\">attic</span></code>.</p>\n<p>Finally, the repository contains <code class=\"docutils literal notranslate\"><span class=\"pre\">soc2009/xxx</span></code> and <code class=\"docutils literal notranslate\"><span class=\"pre\">soc2010/xxx</span></code> feature\nbranches, used for Google Summer of Code projects.</p>\n</section>\n</section>\n<section id=\"id1\">\n<h2>Tags<a class=\"heading-anchor\" href=\"#id1\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>Each Django release is tagged and signed by a <a class=\"reference internal\" href=\"/en/1.8/internals/roles/#releasers-list\"><span class=\"std std-ref\">releaser</span></a>.</p>\n<p>The tags can be found on GitHub’s <a class=\"reference external\" href=\"https://github.com/django/django/tags\">tags</a> page.</p>\n</section>","rootId":"the-django-source-code-repository","toc":[{"title":"High-level overview","anchor":"high-level-overview","children":[]},{"title":"The master branch","anchor":"the-master-branch","children":[]},{"title":"Other branches","anchor":"other-branches","children":[{"title":"Stable branches","anchor":"stable-branches","children":[]},{"title":"Feature-development branches","anchor":"feature-development-branches","children":[]}]},{"title":"Tags","anchor":"id1","children":[]}],"breadcrumbs":[{"docname":"internals/index","title":"Django internals","url":"/en/1.8/internals/"}],"prev":{"docname":"internals/deprecation","title":"Django Deprecation Timeline","url":"/en/1.8/internals/deprecation/"},"next":{"docname":"internals/howto-release-django","title":"How is Django Formed?","url":"/en/1.8/internals/howto-release-django/"},"formats":{"html":"/en/1.8/internals/git/","markdown":"/en/1.8/internals/git.md","json":"/en/1.8/internals/git.json"},"source":"https://github.com/django/django/blob/stable/1.8.x/docs/internals/git.txt","official":"https://docs.djangoproject.com/en/1.8/internals/git/","inVersions":["dev","6.1","6.0","5.2","5.1","5.0","4.2","4.1","4.0","3.2","3.1","3.0","2.2","2.1","2.0","1.11","1.10","1.9","1.8"],"inLocales":["en"]}