Git配置Beyond Comapre

1. 配置Beyond Comapre作为Diff工具:

  git config --global diff.tool bc
  git config --global difftool.prompt false
  git config --global difftool.bc.path "c:/Program Files/Beyond Compare 4/bcomp.exe"

运行git difftool main...feat/xxx --dir-diff, 自动弹出BeyondCompare比较差异。 image

2. 配置Beyond Comapre作为Merge工具

  git config --global merge.tool bc
  git config --global difftool.prompt false
  git config --global mergetool.bc.path "c:/Program Files/Beyond Compare 4/bcomp.exe"

参考: https://www.scootersoftware.com/kb/vcs#gitwindows