无废话,上命令。
1 2 3 4 5 6 7 8 |
$ ln -s /Applications/Beyond\ Compare.app/Contents/MacOS/bcomp /usr/local/bin/bcompare $ ln -s /Applications/Beyond\ Compare.app/Contents/MacOS/bcomp /usr/local/bin/bcomp $ git config --global diff.tool bc3 $ git config --global difftool.bc3.trustExitCode true $ git config --global merge.tool bc3 $ git config --global mergetool.bc3.trustExitCode true |
配置完成后,执行 git difftool 时每比较一个文件都会询问,可以把这个烦人的询问也去掉:
1 |
$ git config --global difftool.prompt false |