@@ -93,10 +93,10 @@ reasons:
9393 Django APIs or behaviors change.
9494
9595Django's documentation is kept in the same source control system as its code. It
96- lives in the `django/trunk/ docs`_ directory of our Subversion repository. Each
97- document online is a separate text file in the repository.
96+ lives in the `docs`_ directory of our Git repository. Each document online is a
97+ separate text file in the repository.
9898
99- .. _django/trunk/docs : https://code.djangoproject. com/browser /django/trunk /docs
99+ .. _docs : https://github. com/django /django/tree/master /docs
100100
101101Where to get it
102102===============
@@ -138,17 +138,9 @@ If you're using an official release of Django, note that the zipped package
138138(tarball) of the code includes a ``docs/`` directory, which contains all the
139139documentation for that release.
140140
141- If you're using the development version of Django (aka the Subversion "trunk"),
142- note that the ``docs/`` directory contains all of the documentation. You can
143- ``svn update`` it, just as you ``svn update`` the Python code, in order to get
144- the latest changes.
145-
146- You can check out the latest Django documentation from Subversion using this
147- shell command:
148-
149- .. code-block:: bash
150-
151- $ svn co https://code.djangoproject.com/svn/django/trunk/docs/ django_docs
141+ If you're using the development version of Django (aka "trunk"), note that the
142+ ``docs/`` directory contains all of the documentation. You can update your
143+ Git checkout to get the latest changes.
152144
153145One low-tech way of taking advantage of the text documentation is by using the
154146Unix ``grep`` utility to search for a phrase in all of the documentation. For
@@ -202,22 +194,22 @@ __ http://www.gnu.org/software/make/
202194Differences between versions
203195============================
204196
205- As previously mentioned, the text documentation in our Subversion repository
197+ As previously mentioned, the text documentation in our Git repository
206198contains the "latest and greatest" changes and additions. These changes often
207199include documentation of new features added in the Django development version
208- -- the Subversion ("trunk") version of Django. For that reason, it's worth
200+ -- the Git ("trunk") version of Django. For that reason, it's worth
209201pointing out our policy on keeping straight the documentation for various
210202versions of the framework.
211203
212204We follow this policy:
213205
214206* The primary documentation on djangoproject.com is an HTML version of the
215- latest docs in Subversion . These docs always correspond to the latest
207+ latest docs in Git . These docs always correspond to the latest
216208 official Django release, plus whatever features we've added/changed in
217209 the framework *since* the latest release.
218210
219211* As we add features to Django's development version, we try to update the
220- documentation in the same Subversion commit transaction.
212+ documentation in the same Git commit transaction.
221213
222214* To distinguish feature changes/additions in the docs, we use the phrase:
223215 "New in version X.Y", being X.Y the next release version (hence, the one
0 commit comments