Reputation: 26765
I am about to do an SVN merge, reintegrating a branch back into the trunk.
Some files changed in the branch, which have been moved within the trunk, so I'm expecting tree conflicts.
What's the best procedure to follow to do the merge successfully and be able to compare the original (moved) trunk files with the updated branch files (which reside in a directory that has been removed on the trunk)?
Upvotes: 1
Views: 434
Reputation: 7516
// Step 1 svn merge -rX:Y url/to/trunk path/to/branch ... // Step 4 svn merge -rA:B --reintegrate url/to/branch path/to/trunk
Note: --reintegrate
works only for svn version >= 1.5
good luck.
Upvotes: 1