...
- Ensure the branch is working and committed to SVN.
- To see what changes and/or branches are available for importing, use this command from the branch distribution:
Code Block python svnmerge.py avail -l
- Windows Users: One of the results should be '/PLFM/trunk'.
- import the changes from trunk into the branch:
- to merge all changes
Code Block python svnmerge.py merge -S /PLFM/trunk
- to merge one or more particular changes
Windows Users: to merge all changesCode Block python svnmerge.py merge -r #,#,#
Code Block python svnmerge.py merge -S /PLFM/trunk
- to merge all changes
- Resolve conflicts, compile, test and commit EVERYTHING in the branch.
Code Block svn ci -F svnmerge-commit-message.txt
...