Getting Beyond Compare to Diff 2 Branches Simultaneously

后端 未结 2 565
情深已故
情深已故 2021-01-31 05:51

>>git difftool branch1 branch2 opens my difftool (Beyond Compare:BC) with every file that has a diff between the branches. I have to close BC after each file

2条回答
  •  生来不讨喜
    2021-01-31 06:03

    Starting with git v1.7.11, you can use git difftool --dir-diff to perform a directory diff.

    The answer that follows applies to git installations older than v1.7.11.


    This issue is not related to BC, but to the way git works. Fortunately, there is a solution at this URL - git-diffall

提交回复
热议问题