1. 程式人生 > >使用Beyond Compare作為git mergetool的預設對比工具

使用Beyond Compare作為git mergetool的預設對比工具

對於很多不習慣命令列的人來說,有一個圖形介面的對比工具尤為重要。
雖然git mergetool預設提供了很多工具,但是用起來都不是很順手。
Beyond Compare是一個非常好用的對比工具,推薦使用。
若要它作為你的預設對比工具,只需要修改user目錄下的.gitconfig檔案,新增即可。

[diff]
        tool = bc3
[difftool "bc3"]
        cmd = /usr/bin/bcompare \"$LOCAL\" \"$REMOTE\"
[merge]
        tool = bc3
[difftool]
        prompt = false
[mergetool "bc3"]
        cmd = /usr/bin/bcompare \"$LOCAL\" \"$REMOTE\" \"$BASE\" \"$MERGED\"