Changes between Version 12 and Version 13 of DjangoBranches
- Timestamp:
- Jun 19, 2008, 12:07:50 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DjangoBranches
v12 v13 25 25 We are discouraging the creation of new branches inside Django's subversion repository. If you'd like to work on a major new contribution to Django, we encourage you to set up a new "branch" elsewhere and let the Django-developers mailing list know about it. One tactic is to use a distributed revision control system ("DRCS", or sometimes "DSCM", ''see'' [http://en.wikipedia.org/wiki/Revision_control Wikipedia's article on revision control]); these systems allow you to create your own repository anywhere you'd like, and typically include tools to import from Subversion. Options here include [http://bazaar-vcs.org/ Bazaar], [http://git.or.cz/ Git], [http://www.selenic.com/mercurial/ Mercurial], and [http://svk.bestpractical.com/ SVK]. 26 26 27 Mercurial repositories mirroring Django: 27 Please note that the information regarding branches in the [http://www.djangoproject.com/documentation/contributing/#branch-policy Contributing] document is out of date with regards to Django's branch creation policy. 28 28 29 * [Preferred] Full Mercurial mirror hosted at dpaste.com, updated hourly: http://hg.dpaste.com/django/ 30 * SVN2HG Gateway of Django and Active branches, updated hourly: [http://hgsvn.trbs.net/django/] 31 * ~~ Tom Tobin Mercurial Mirror: [http://hg.korpios.com/] ~~ 29 == Distributed version control mirrors == 30 31 === Bazaar === 32 33 [https://launchpad.net/ Launchpad] mirrors Django's trunk: https://launchpad.net/django 34 35 You can fetch it with: 36 {{{ 37 bzr branch lp:django 38 }}} 39 40 === Git === 32 41 33 42 Matthias Kestenholz has set up several git repositories for Django and for a selection of Django applications: … … 36 45 * The django changes are sporadically published on repo.or.cz: http://repo.or.cz/w/django.git/ 37 46 38 Please note that the information regarding branches in the [http://www.djangoproject.com/documentation/contributing/#branch-policy Contributing] document is out of date with regards to Django's branch creation policy. 47 Jacob Kaplan-Moss has also set up an experimental git mirror ([http://groups.google.com/group/django-developers/browse_thread/thread/7c96cbb1a13aa368 django-developers post]): 48 49 * Repository: git://djangoproject.com/django 50 * Gitweb: http://code.djangoproject.com/git/?p=django 51 52 === Mercurial (hg) === 53 54 * [Preferred] Full Mercurial mirror hosted at dpaste.com, updated hourly: http://hg.dpaste.com/django/ 55 * SVN2HG Gateway of Django and Active branches, updated hourly: [http://hgsvn.trbs.net/django/]