Files
dotfiles/gitconfig
Vasili Svirydau 6e35d9baec bcompare
2018-02-20 10:30:04 -08:00

27 lines
463 B
Plaintext

[user]
name = Vasili Svirydau
email = vsvirydau@copperleaf.com
[push]
default = simple
[core]
editor = /usr/bin/vim
[merge]
tool = bcompare
[diff]
tool = bcompare
[mergetool "bcompare"]
trustExitCode = true
cmd = bcompare "$LOCAL" "$REMOTE" "$BASE" "$MERGED"
[mergetool "meld"]
cmd = meld "$LOCAL" "$BASE" "$REMOTE" --output "$MERGED"
[difftool "bcompare"]
trustExitCode = true
cmd = bcompare "$LOCAL" "$REMOTE"