| | 11 | |
| | 12 | Merging branches into trunk: |
| | 13 | * goto branch: |
| | 14 | {{{ svn merge $svn/trunk }}} |
| | 15 | * goto local trunk copy: |
| | 16 | {{{ svn merge --reintegrate $svn/branches/mybranch }}} |
| | 17 | * if you have the following message: |
| | 18 | {{{ |
| | 19 | Error: Some revisions have been merged under it that have not been merged |
| | 20 | Error: into the reintegration target; merge them first, then retry. |
| | 21 | }}} |
| | 22 | you may need to clear out the mergeinfo properties: |
| | 23 | * goto branch: |
| | 24 | {{{ svn -R propdel svn:mergeinfo . }}} |
| | 25 | {{{ svn ci 'deleted mergeinfo from everywhere on branch' .}}} |
| | 26 | then return to trunk copy and do the reintegration again. |
| | 27 | |
| | 28 | |