设置Beyond Compare 为 Git 默认的比较工具
Posted icuic
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置Beyond Compare 为 Git 默认的比较工具相关的知识,希望对你有一定的参考价值。
对于Beyond Compare4,Git版本号在2.2.0之后的,请在Git中依次输入以下命令:
1 git config --global diff.tool bc3 2 git config --global difftool.bc3.path "D:/Program Files/Beyond Compare 4/BCompare.exe"
其中,Beyond Compare 的安装路径请根据实际情况自行修改。
另外,如下命令可以查看 Git 版本号:
1 git version
设置完成后,可以使用如下类似的命令,调用 Beyond Compare 进行比较:
1 git difftool ./ // 查看当前目录下所有的改动 2 git difftool filename // 比较filename文件
至于如何比较各历史版本之间的差异,还待研究。
对于其它版本的 Beyond Compare,或者你使用的是非 Git 的其它版本控制系统,请参考 Beyond Compare 官方的帮助页面。
以上是关于设置Beyond Compare 为 Git 默认的比较工具的主要内容,如果未能解决你的问题,请参考以下文章
Beyond Compare 4 作为 Windows 10 Pro 上 Git 的 Difftool