jimbo
jimbo

Reputation: 1018

Merging Branch into Trunk

Now I know this has been asked a few times, but i'm still not getting it...

I use Versions which is doing a great job, I am also using beansalk and they are working nicely together. However, I have been working on a branch of the trunk (sandbox) which I now want to merge back into the trunk. Versions can't do this, so it's into Terminal.

Sandbox is reversion 256 and the Trunk (because of a few other amends) is 255.

Upvotes: 0

Views: 390

Answers (2)

Muhammad Noman
Muhammad Noman

Reputation: 1

Araixs Merge tool is best for such kind of issue you can merge your changes and the check in into trunk

Upvotes: 0

Daniel Braz
Daniel Braz

Reputation: 36

Simple, juste use the merge: svn merge -r N:M SOURCE [PATH]

Example: $ svn merge -r 250:HEAD HTTP_OR_SSH_OR_SVN://path_to_your_local_or_network_repo

You may look here: http://svnbook.red-bean.com/en/1.0/re16.html

Upvotes: 2

Related Questions