I have my project in which I have to reintegrate 2 branches in the trunk...the situation is this one:
trunk (r: xxx)
|
|---- created branch1 (r: xxx+1)
| |
created branch2 (r: xxx+3)----| |
| | |
| | |
| | |
| | |
Now I want to unify and reintegrate the two branches in a new one.
I have tried to create a new branch using:
svn cp ^/trunk ^/branches/app-v2
and then make a in the new branch:
svn merge ^/branches/branch1 --reintegrate
But I got:
svn: '/svnrepos/!svn/bc/xxx/branches/app-v2' path not found
I think that it depend that when the branch1 was created the app-v2 doesn't exist.
If I try with a regular merge (without --reintegrate
) I have a lot of conflicts...
How can I merge the two branches in a new one?
Thanks
svn help merge
about all merge detailsor