-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitconfig
28 lines (28 loc) · 920 Bytes
/
.gitconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[user]
name = Adam Ginsburg
email = [email protected]
[user]
name = Adam Ginsburg
email = [email protected]
[core]
excludesfile = /Users/adam/.gitignore_global
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/SourceTree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true
[mergetool "gvimdiff3"]
cmd = mvim -f -d -c \"wincmd J\" \"$MERGED\" \"$LOCAL\" \"$BASE\" \"$REMOTE\"
[mergetool "vimdiff3"]
cmd = vim -f -d -c \"wincmd J\" \"$MERGED\" \"$LOCAL\" \"$BASE\" \"$REMOTE\"
[mergetool "meld"]
cmd = meld '\"$LOCAL\"' '\"$BASE\"' '\"$REMOTE\"' '\"$MERGED\"'
keepBackup = false
path = /Users/adam/bin/meld
[merge]
tool = diffconflicts
[mergetool "diffconflicts"]
cmd = diffconflicts mvim $BASE $LOCAL $REMOTE $MERGED
trustExitCode = true
keepBackup = false