tags:

views:

37

answers:

1

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.

Any help on this would be great, and read a few bits, but still a little lost...

+2  A: 

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

Daniel Braz
So just to check:svn merge -r 255:HEAD https://my_path_to_local_repos
jimbo
Tried:svn merge -r 243:HEAD https://root_to_branchBut am getting:svn: '.' is not a working copy
jimbo
Are you running the command on the root of your project?Ex.: If your project lives in /home/your_name/projects, you must run the command inside the projects directory (or in any subdir with a .svn folder :)
Daniel Braz