I'm currently working on a web application development. Our company methodology is to work on the project trunk for as long as开发者_如何学Go possible and switch to the branches only when necessary.
However, in order to guarantee the success of a recent deploy, I have worked directly on the client specific branch. I would like to know how can I apply the made changes to the trunk?
svn merge
Specifically, it sounds like you want to use:
svn merge -r N:M SOURCE [PATH]
精彩评论