tags:

views:

112

answers:

2

Hi there!

I'm currently working in a web application development. Our company methodology is to work on the project trunk for as long as 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?

Thanks in advance for the help, Best regards!

+3  A: 

svn merge

Specifically, it sounds like you want to use:

svn merge -r N:M SOURCE [PATH]
jasonbar
A: 

Hi there!

I usually use merge when I want to apply trunk changes to a specific way. There is no problem on executing the inverse operation?

Thanks for the help, Best regards!

Rui Gonçalves
@rugioncalves - If you want to reply to a response (like I am doing right now), you can put a comment directly under the response. Don't reply as an "answer" as this dilutes the various responses you get. Thanks!
JasCav
@rugioncalves: No, there are no problems merging from a branch back into trunk (this is the usual workflow for branches). You'll have to be careful about resolving any conflicts, of course.
jasonbar
Ok!Thanks for the help!Regards!
Rui Gonçalves