git 与 Beyond Compare

git 中添加 Beyond Compare作为 difftoolmergetool

difftool

1. 查看是否允许bc作为比较工具

 git difftool --tool-help

返回:

image.png

包含 bcbc3bc4
所以可以可以配置

2. 配置difftool

git config --global diff.tool bc4
git config --global difftool.bc4.path "C:\Program Files\Beyond Compare 4\BComp.exe"

.gitconfig文件中也已经配置好了

image.png

3. 使用

git difftool
image.png

就可以愉快使用bc作为比较工具查看了。

你可能感兴趣的:(git 与 Beyond Compare)