Changes between Version 288 and Version 289 of WikiStart


Ignore:
Timestamp:
Apr 28, 2012, 2:21:42 AM (12 years ago)
Author:
Aymeric Augustin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WikiStart

    v288 v289  
    55
    66== Getting the code ==
    7 Django uses [http://subversion.apache.org/ Subversion] (`svn`) for managing its code.
     7Django uses [http://git-scm.com/ Git] (`git`) for managing its code.
    88
    9 Assuming you have Subversion installed, the following command in a terminal will fetch the most recent code for you:
     9Assuming you have Git installed, the following command in a terminal will fetch the most recent code for you:
    1010{{{
    11 svn co https://code.djangoproject.com/svn/django/trunk/
     11git clone https://github.com/django/django.git
    1212}}}
    1313
     
    1515
    1616== Browsing the code online ==
    17  * [/browser/django/trunk/ Browse source]: See the full code via a Web interface.
    18  * [/timeline/ Timeline]: Keep track of recent changes.
     17 * [https://github.com/django/django Browse source]: See the full code via a Web interface.
     18 * [https://github.com/django/django/commits/master Timeline]: Keep track of recent changes.
    1919
    2020== Getting involved ==
Back to Top