i found conflicting procedures:
svn checkout http://a.b.c/bldtest1
cd bldtest1
svn merge -r45:50 http://a.b.c/bldtest2
svn merge -r53:55 http://a.b.c/bldtest2
svn ci -m "Revision 45:50 and 53:55 merged"
Merge between two branches in subversion
$ svn merge -r 127:240 svn+ssh://svn.myproject.org/svn/trunk .
WHICH one of these is the right one ? as they are opposite of each other. provided we find the set of revisions to be merged with :
svn log --verbose --stop-on-copy branch1 > log.txt
so in order to merge branch1 TO branch2, do we:
1. svn co branch1
3. cd branch1
4. svn merge -r xx:yy branch2
OR
1. svn co branch1
2. svn co branch2
3. cd branch2
4. svn merge -r xx:yy branch1 .