I saw this posting which explained how to get BC3 working as the diff tool for Subversion... but what about using Beyond Compare 3 to do 3-way merge/compares?
|
To do this, create a batch file called (for example) diff3wrap.bat, and setup your diff3-cmd in your SVN config to point at it. The following diff3wrap.bat file will do the job. It creates a temporary filename for the merge output and deletes it after returning the merged contents back to SVN.
|
|||||
|
|
I like liamf's batch file, but I think it could take a minor tweak: I've added automerge and reviewconflicts to the command invocation, so that in case of a merge without conflicts it just closes without intervention - the UI will only pop-up to review conflicts. Thus, the line in question becomes:
|
||||
|
|
I only have experience with BC3 and TFS, so take this with a grain of salt. The 3-way merge was the only feature I had problems with. More than once I had to copy and paste the changes by hand in BC3 to finish the merge. |
|||||
|
|
Here's a Cygwin bash script that works with Subversion 1.7 for both diff-cmd and diff3-cmd
|
|||
|
|
|
Here is a linux version of liamf's script that works with svn 1.6.
|
|||
|
|