| 102 | |
| 103 | === Applying a changeset to a different branch === |
| 104 | |
| 105 | Another typical example is that you are working on some branch (say, {{{trunk}}}), and you are committing a change to this branch (such as a bugfix), which you also want to apply to another branch (say, you stable branch {{{stable/2.5}}}). If the committed change for {{{trunk}}} brought your subversion repository revision number from N to N+1 (say, from 465 to 466), you can then type |
| 106 | {{{ |
| 107 | svn merge -r 465:466 https://projects.coin-or.org/svn/Prjct/trunk |
| 108 | }}} |
| 109 | in your local working copy of {{{stable/2.5}}}. This will try to merge the changeset 466 into your local copy. If the files to which changes are applied have not divergted too much, this should work without problems, but you should check in any case if the patch is applied correctly. |