Changes between Version 288 and Version 289 of WikiStart
- Timestamp:
- Apr 28, 2012, 2:21:42 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v288 v289 5 5 6 6 == Getting the code == 7 Django uses [http:// subversion.apache.org/ Subversion] (`svn`) for managing its code.7 Django uses [http://git-scm.com/ Git] (`git`) for managing its code. 8 8 9 Assuming you have Subversioninstalled, the following command in a terminal will fetch the most recent code for you:9 Assuming you have Git installed, the following command in a terminal will fetch the most recent code for you: 10 10 {{{ 11 svn co https://code.djangoproject.com/svn/django/trunk/ 11 git clone https://github.com/django/django.git 12 12 }}} 13 13 … … 15 15 16 16 == 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. 19 19 20 20 == Getting involved ==