Git添加beyond-compare4作为比较工具

24次阅读

共计 1009 个字符,预计需要花费 3 分钟才能阅读完成。

使用 git diff 或者是 git difftool 命令去比较文件都是在 git 小黑窗口去打开,比较起来很不友好。所以我们通过配置文件把比较功能强大的“beyond compare4”作为 Git 的比较工具,这样我们就可以通过命令行调用强大的“beyond compare4”。通过“beyond compare4”工具更加轻松的去比较本地和远程文件的差异性

1. 配置“.gitconfig”文件

首先我们找到 Git 的配置文件“.gitconfig”,在 C:\Users\Administrator\.gitconfig 文件中配置, 具体配置如下:

[gui]
    encoding = utf-8

    tool = bc4
[difftool]
    prompt = false
[difftool "bc4"]
    cmd = "\"C:/Program Files/Beyond Compare 4/bcomp.exe\"\"$LOCAL\"\"$REMOTE\""
    
[merge]
    tool = bc
[mergetool]
    prompt = false
    keepBackup = false
[mergetool "bc"]
    cmd = "\"C:/Program Files/Beyond Compare 4/bcomp.exe\"\"$LOCAL\"\"$REMOTE\"\"$BASE\"\"$MERGED\""

mergetool是 merge 解决冲突时会弹出对应的运行软件,keepBackup=false可以防止合并后生产后缀为 .orig 的备份文件

说明:cmd = "\"C:/Program Files/BeyondCompare/bcomp.exe\"\"$LOCAL\"\"$REMOTE\""

表示输入命令 git difftool后去找对应的运行文件并传(大字符串里面用空格分开)递参数处理。用空格分开(相当于参数),\"表示单个输入的参数必须为字符串(个人理解)。

  • 第一个表示调用可执行文件的路径
  • 第二个 $LOCAL 表示远程文件临时存储在本地的 C:\Users\Administrator\AppData\Local\Temp\wj9D8b_.eslintrc 中去
  • 第三个 $REMOTE 表示去拿当前需要比较的文件

注意:建议只比较一个文件,否则 git 会递归对比每一个文件。

配置完成后可以使用git difftool < 文件 >,默认就会打开“Beyond Compare 4”工具

git difftool readme.md

正文完
 0