我正在尝试git diff
在 Windows 7 64 位上工作。当我从 Windows 命令提示符运行以下命令时:
C:\temp\mygrit>git diff
或者
C:\temp\mygrit>git difftool
我没有输出,也没有外部程序启动。这是我的 .gitconfig 文件:
[diff]
tool = bc3
[difftool]
prompt = false
[difftool "bc3"]
cmd = \"c:/program files (x86)/beyond compare 3/bcomp.exe\" \"$LOCAL\" \"$REMOTE\"
如果我从 .gitconfig 中删除所有这些行,我会得到相同的结果。
知道发生了什么吗?