I would like to merge all the changes that occurred between rev 10 and HEAD rev on http: // url-of-branch-a and apply them to http: // url-of-branch-b .
Something like...
svn merge -r 10:HEAD http://url-of-branch-a
Is it possible? If so, what is the syntax?
I am running the SVN client from the unix command line. SVN client version is 1.4
EDIT: Yes, my specific solution was ...
- change the directory to the folder of my working copy that wants to receive changes (branch-b)
- svn merge -r 10: HEAD http: // url-of-branch-a
This merges the changes from 'branch-a' to 'branch-b'
svn
user62732 Aug 12 '09 at 2:00 p.m. 2009-08-12 14:00
source share