Monday, October 3, 2011

SVN - merge the branch with trunk

1. create a new temporary folder, if not already exists.
    $> mkdir temp
2. go to temp folder.
    $> cd temp
3. check out trunk from SVN repository.
    $> svn co <SVN trunk URL >
4. go to specific project folder where you want to merge the branch code e.g. Test
    $> cd /home/<your home folder>/temp/trunk/Test
5. now start integrating the branch code
    $> svn merge --reintegrate svn://<svn server ip>/branches/Test

No comments:

Post a Comment