Changes between Version 10 and Version 11 of HowToSVN


Ignore:
Timestamp:
Apr 28, 2008, 1:30:02 AM (16 years ago)
Author:
hamish
Comment:

backport hint

Legend:

Unmodified
Added
Removed
Modified
  • HowToSVN

    v10 v11  
    1313    svn log [file.c] | tac
    1414}}}
     15
     16 * Bug: svn2cl !ChangeLog loses file names branch point
     17http://article.gmane.org/gmane.comp.gis.grass.devel/26626/
     18http://article.gmane.org/gmane.comp.gis.grass.devel/26631
    1519
    1620== Switch the repository ==
     
    2933 * http://svnbook.red-bean.com/
    3034
     35=== Merge between branches (backporting) ===
     36
     37Run the command from within the target branch.
     38 * Example 1: pull a change from trunk into the 6.3 release branch:
     39{{{
     40    cd releasebranch_6_3/
     41    svn merge -c 30749 https://svn.osgeo.org/grass/grass/trunk
     42}}}
     43
     44where {{{30749}}} is the revision number of the changeset you wish to backport.
     45
     46 * Example 2: merge a change from the 6.4 development branch into GRASS 7 (trunk):
     47{{{
     48    cd trunk/
     49    svn merge -c 31154 https://svn.osgeo.org/grass/grass/branches/develbranch_6
     50
     51}}}
     52
     53
     54
    3155== See Also ==
    3256