Merging the SVN command line is confusing, especially when merging the branch back into the trunk. โMy changesโ are the ones I made in the branch, but that would be wrong according to SVN. To really complicate matters, SVN refers to paths like SOURCE, TARGET, and HEAD on the command line.
Here is a simple answer if you run this merge statement from the C: \ Project1 \ Trunk directory
svn merge -r 60:68 C:\Project1\branches\UpdatesToProject1
"Mine" is the directory from which SVN is run from (C: \ Project1 \ Trunk).
"Their" is the directory you enter and point to on the command line (C: \ Project1 \ branches \ UpdatesToProject1)
It would be really nice if SVN gave the paths referenced by MINE and THEIRS.
K Kimble Apr 24 '13 at 13:49 on 2013-04-24 13:49
source share