Visual Studio 源代码管理选项中的 "Configure User Tools" 按钮在哪里?

Where is my "Configure User Tools" button in Visual Studio Source Control options?

我正在尝试将 Beyond Compare 设置为我的 Visual Studio 2015 比较工具,前 10 个 Google 命中中有一次告诉我单击选项->源代码管理->配置用户工具按钮。

我的源代码管理选项下没有这个按钮,实际上那里只有一个选项,就是"Source control plugin"下拉菜单。

我确实在 Beyond Compare 网站上找到了一组说明,它只需要我 select 正确的源代码控制插件,但它需要编辑 .git 的 repo 配置文件每个新项目。这不是一个可接受的解决方案。

我的 Visual Studio 怎么了?

如果您使用 Git 作为 Visual Studio 中的源代码控制提供程序,说明如下:

  1. 打开 Visual Studio。
  2. Select“工具”菜单中的选项。
  3. Select源代码管理分支下的插件设置 左侧树控件。
  4. Select Microsoft Git 插件设置下的提供程序 右侧窗格。
  5. 在 Git 存储库中启动项目后,编辑配置文件 在项目文件夹中的 .git 文件夹中。
  6. 更改配置文件以反映以下更改:

    [diff]
        tool = bc4
    [difftool "bc4"]
        cmd = \"C:\Program Files (x86)\Beyond Compare 4\BComp.exe\" \"$LOCAL\" \"$REMOTE\"
    [merge]
        tool = bc4
    [mergetool "bc4"]
        cmd = \"C:\Program Files (x86)\Beyond Compare 4\BComp.exe\" \"$REMOTE\" \"$LOCAL\" \"$BASE\" \"$MERGED\"
    

来源:http://www.scootersoftware.com/support.php?zz=kb_vcs#visualstudio-git

您使用 "Configure User Tools" 按钮引用的说明适用于使用 Team Foundation Server 的项目,它们对 Git 无效。