vote up 1 vote down star
1

I have a dev branch that hasn't been touched for a while. I merged the trunk into it to integrate many fixes/changes in the main line since it was branched out, but now I have many small conflicts (merge-left/merge-right).

I want the latest trunk revision to be used to resolve each conflict. Is there a command I can run that will resolve all conflicts under a working copy in one direction automatically (merge-right should be used for all conflicts)?

EDIT: As indicated in the comments, I tried reverting and then running svn merge with the --accept option, only apparently there is no such option in SVN 1.0. Still looking for a solution.

flag

25% accept rate
Can't you install svn 1.5 just for the merge? You can even do it on some other machine. – orip Nov 30 '08 at 12:27
I'll look into it – Eran Galperin Nov 30 '08 at 12:32

3 Answers

vote up 1 vote down

I think you can use the "--accept theirs-full" option when you issue the svn merge command. That should do what you want...

link|flag
I'm looking for a solution that can be applied post merge operation – Eran Galperin Nov 30 '08 at 11:15
Ooops... Sorry, I didn't understand that... I think the easiest is a svn revert on the local copy after the merge has generated conflicts – abigagli Nov 30 '08 at 11:54
Actually there is no such option svn merge --accept.. – Eran Galperin Nov 30 '08 at 11:57
Yes there is, in svn 1.5: subversion.tigris.org/svn_1.5_releasenotes.html#i… – orip Nov 30 '08 at 12:26
Sorry, I'm using ver 1.0 so this doesn't help me – Eran Galperin Nov 30 '08 at 12:30
vote up 0 vote down

I think TSVN could do this if you do a "Check for modifications", which will show you all the files including the conflicted ones, select them all, and then choose 'resolve using theirs'.

Not sure if TSVN is relevant for your platform, or it that's actually exactly what you want to to do, but it might be helpful...

link|flag
Yes I'm currently doing just that but it will take awhile to complete (around 100Mb repository). I was hoping for a command-line solution I could run on the server, and for future reference – Eran Galperin Nov 30 '08 at 11:32
vote up 0 vote down

Like abigagly said, you should use --accept theirs-full when doing the merge. If you have already done the merge and want to start over, you can use svn revert -R first, to start over.

The --accept option is new in SVN 1.5, along with interactive merge support.

link|flag
The is no such option --accept for svn merge – Eran Galperin Nov 30 '08 at 11:59
This is a new option in SVN 1.5. – Avi Nov 30 '08 at 12:05
bummer for me.. :) – Eran Galperin Nov 30 '08 at 12:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.