I have this folder structure:
\myproject\branches\v1.2
\myproject\trunk
I need to merge v1.2 back into trunk. v1.2 has revisions 104 and 105. Trunk goes from 57-65 and 106. The 106 revision is deleting a folder that doesn't exist in the v1.2 folder.
My setup is file based. I've tried this in trunk:
MacBook:trunk myuser$ svn merge -r104:105 "file:///Developer/Main%20Repository/myproject/branches/v1.2"
I had three conflicts and resolved them. However, I do not see that any files have been updated in the trunk. Do I need to do something else/different to complete the merge down?
-- EDIT --
I really want to merge the entire tag\v1.2 branch into trunk. So I ran:
svn merge "file:///Developer/Main%20Repository/myproject/branches/v1.2"
and resolved a few more conflicts. Is there a way for me to determine if the two branches are now the same? I can see by doing some file comparisons that there are still definitely differences between the two branches, meaning the merge didn't work.