How can I use Beyond Compare 3 as the diff3-cmd for svn?

前端 未结 5 1976
说谎
说谎 2021-02-14 14:13

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?

5条回答
  •  余生分开走
    2021-02-14 14:55

    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:

    %DIFF3% /automerge /reviewconflicts /lefttitle=%MYTITLE% /centertitle=%OLDTITLE% /righttitle=%YOURTITLE% /outputtitle="Merge Output" %MINE% %YOURS% %OLDER% %OUTPUTFILE% 
    

提交回复
热议问题