Merge a commit to trunk
Say you commit a fix to a stable branch (ex.: 8x), and you want to merge that commit to trunk (ex.: future 9x)In this example, we'll merge the commit in branches/8.x (revision 39486) to trunk.
- Checkout trunk -> get code
- From the trunk directory (you may have to do 'cd trunk')
Merge revision from branches/8.x to the current checkout (which happens to be trunk)svn merge -c 39486 https://tikiwiki.svn.sourceforge.net/svnroot/tikiwiki/branches/8.x
- Commit
svn commit -m "[merge/r39486] minor text corrections" INSTALL
Related:

Last Comments