Tuesday, December 15, 2009

Merging specific changes from trunk to branch

To merge a set of specific revisions from the trunk to branch [this is usually required when a code change on trunk after a release needs to be back ported on to the release (each release having its tag)].

 

# cd abc/tags/1_7_3 # go to the branch

# svn merge svn://xyz/abc/trunk@8108 svn://xyz/abc/trunk@8109 . # merge into current working copy (branch)

No comments: