Mac上的五种好用的文件比较工具

https://www.makeuseof.com/tag/mac-file-comparison-tools/

Mac 配置gitdiff的GUI比较工具

  1. #instruct Git to use it automatically for git-mergetool
  2. git config --global merge.tool opendiff
  3. #want it for git-difftool as well
  4. git config --global diff.tool opendiff
  5. #disable the prompting for every file with
  6. git config --global difftool.prompt false

In recent versions of XCode, FileMerge is now bundled with XCode. You cannot install FileMerge as a standalone program. opendiff is still in its command-line utilities which are standalone.

https://stackoverflow.com/questions/21486481/is-it-possible-to-view-git-diffs-using-a-gui-side-by-side-tool-on-mac