gpt4 book ai didi

git - 使用 Git 插件时 Visual Studio 中的 diff 工具

转载 作者:IT王子 更新时间:2023-10-29 01:20:53 24 4
gpt4 key购买 nike

Microsoft 发布了 Git plugin for Visual Studio 2012 .我发现它非常好,但似乎没有任何选项可以更改默认的 Diff 工具。更糟糕的是,我根本无法对 ascx 代码 stash 文件进行比较。它仅显示主 .ASCX 文件的差异选项。

你好吗

  1. 在使用 git 插件时区分代码 stash 文件?
  2. 更改差异工具?

最佳答案

您必须更改本地 .gitconfig,而不是像使用 TFS 那样通过 Visual Studio 进行更改

https://gist.github.com/mkchandler/2377564

Add the following to your global .gitconfig file:

[diff]
tool = diffmerge
[difftool "diffmerge"]
cmd = \"C:\\Program Files\\SourceGear\\Common\\DiffMerge\\sgdm.exe\" \"$LOCAL\" \"$REMOTE\"
[merge]
tool = diffmerge
[mergetool "diffmerge"]
cmd = \"C:\\Program Files\\SourceGear\\Common\\DiffMerge\\sgdm.exe\" -merge -result=\"$PWD/$MERGED\" \"$PWD/$LOCAL\" \"$PWD/$BASE\" \"$PWD/$REMOTE\"
trustExitCode = true
[mergetool]
keepBackup = false

关于git - 使用 Git 插件时 Visual Studio 中的 diff 工具,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16674503/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com