I am new to svn and need to do a lot of merging from trunk to a branch we are working from. This is the sequence of svn commmands I take to merge
svn up
svn mergeinfo --show-revs eligible branch trunk (branch and trunk are actually svn urls)
I get the lowest revision of the eligible revisions from branch and the latest trunk revision, then do an svn merge.
svn merge -r lowest_eligible:latest_trunk trunk_url .
During the merge there are a few conflicts. However, they are not related to any changes we have made in the branch so I'm a little confused why they are conflicts. Any ideas? Anyway, I always just choose, theirs-full to resolve it
Finally, I need to do svn resolve before committing
svn resolve --accept working -R .
I have two questions. Is this the best sequence of commands to perform a merge from trunk to branch?
The merge tends to take a while so I would like to just leave it merging and let svn automatically resolve the conflict to theirs-full. Is there a way to do this?