| 35 | === Merge between branches (backporting) === |
| 36 | |
| 37 | Run 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 | |
| 44 | where {{{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 | |