Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Resolve all conflicts and rerun the merge to apply the remaining In autoated Merge Script

Tags:

svn

We have a automated batch Script which takes care of merge and outputs all the log (conflicts) in a text file for developers to get proper visibility. Now the problem is sometimes it stops in between and gives the below error
svn: E155015: One or more conflicts were produced while merging Resolve all conflicts and rerun the merge to apply the remaining In autoated Merge Script Below is the command

svn merge http://xyzBranch.local.com C:\WORKSPACE\Trunk\ --username=xyz--password=zyz --non-interactive >> C:\mergelogs\logs

Any help would be appreciated I tried a lot of ways to fix this but no success

Regards Pravin

like image 890
Pravin Avatar asked Dec 09 '13 14:12

Pravin


1 Answers

This happens when some of the commits were already "cherry-picked", i.e. merged using the -r x:y flag. In such case subversion first merges everything up to x and than everything above y. If merging x fails, it gives this error.

I don't think you should be working around it. If you want to do the merge, just do it manually. If you don't, just tell the script to stop trying.

like image 184
Jan Hudec Avatar answered Oct 21 '22 17:10

Jan Hudec