How to merge branch to trunk

To merge branch to trunk, remember following command.

> svn switch http://trunk_url
> svn merge http:://branch_url
> svn commit -m "blah blah..."
  1. Change current workspace to trunk.
  2. Merge branch’s changelog to current workspace (trunk).
  3. Commit it with some commit message.

comments powered by Disqus