How to use an external diff tool for Git in Visual Studio 2013?

后端 未结 2 1761
日久生厌
日久生厌 2021-02-10 02:23

I\'ve found this post that explains how you can have Visual Studio 2013 use the built-in diff tool when comparing files in Git, but I\'m having the opposite problem. Right now w

2条回答
  •  轮回少年
    2021-02-10 02:59

    Visual Studio uses the diff.tool configuration setting, not the diff.guitool configuration setting.

    Try:

    [diff]
        tool = TortoiseMerge
    

提交回复
热议问题