Changes between Version 44 and Version 45 of HowToSVN
- Timestamp:
- 04/02/14 03:00:09 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToSVN
v44 v45 21 21 == Switch the repository == 22 22 23 To switch from SVN 'trunk' ( now GRASS 7 development) to 'develbranch_6' (now GRASS 6.5 development but please note that real development happens in 7!) use23 To switch from SVN 'trunk' (GRASS 7 development) to 'releasebranch_7_0' (GRASS 7.0.x release branch) use 24 24 25 25 {{{ 26 26 cd /path/to/your/local/copy/trunk 27 svn switch https://svn.osgeo.org/grass/grass/branches/develbranch_6 . 27 28 # might be needed on more modern systems needed: 29 # svn upgrade 30 31 svn switch https://svn.osgeo.org/grass/grass/branches/releasebranch_7_0 28 32 }}} 29 33 … … 31 35 32 36 To find other branch names, check [http://trac.osgeo.org/grass/browser/grass/branches/ here]. 37 38 == Switch from http to https == 39 40 - Only needed in special cases - 33 41 34 42 To be able to merge new files between branches both branches will have to appear to be from the same master repository. Subversion does not recognize `http://` and `https://` to be the same. In those cases the following command can be given to reassign http to https: … … 39 47 https://svn.osgeo.org/grass/grass/branches/releasebranch_6_4 . 40 48 }}} 41 42 49 == Download source code tarball and switch to the releasebranch_7_0 == 43 50