Changeset 1762
- Timestamp:
- 12/20/05 23:47:17 (3 years ago)
- Files:
-
- django/trunk/docs/contributing.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/contributing.txt
r1761 r1762 224 224 -------------- 225 225 226 To test a given branch, you can simply check out the entire branch. Or, if 227 you've got a working directory you'd like to switch to use a branch, you can 228 use:: 226 To test a given branch, you can simply check out the entire branch, like so:: 227 228 svn co http://code.djangoproject.com/svn/django/branches/<branch>/ 229 230 Or, if you've got a working directory you'd like to switch to use a branch, 231 you can use:: 229 232 230 233 svn switch http://code.djangoproject.com/svn/django/branches/<branch>/ … … 232 235 ...in the root of your Django sandbox (the directory that contains ``django``, 233 236 ``docs``, and ``tests``). 237 238 The advantage of using ``svn switch`` instead of ``svn co`` is that the 239 ``switch`` command retains any changes you might have made to your local copy 240 of the code. It attempts to merge those changes into the "switched" code. 234 241 235 242 Official releases
