Skip to content

Commit

Permalink
threesome.vim for merges
Browse files Browse the repository at this point in the history
  • Loading branch information
julienXX committed Mar 16, 2012
1 parent d7b2249 commit 47bdf5b
Showing 1 changed file with 20 additions and 5 deletions.
25 changes: 20 additions & 5 deletions gitconfig
@@ -1,24 +1,30 @@
[github]
user = julienXX
token = e8eda04536d1a3339818db5d06168a0f

[user]
email = julien@sideburns.eu
name = Julien Blanchard

[color]
ui = auto

[color "branch"]
current = yellow reverse
local = yellow
remote = green

[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold

[color "status"]
added = yellow
changed = green
untracked = cyan

[alias]
st = status -s
ci = commit
Expand All @@ -27,26 +33,35 @@
df = diff
lg = log -p
caa = commit -a --amend -C HEAD
[merge]
tool = vim
[mergetool "vim"]
cmd=/usr/local/bin/vim -d -g $LOCAL $MERGED $REMOTE
keepbackup=false

[url "git@github.com:"]
insteadOf = "gh:"
pushInsteadOf = "github:"
pushInsteadOf = "git://github.com/"

[url "git://github.com/"]
insteadOf = "github:"

[url "git@gist.github.com:"]
insteadOf = "gst:"
pushInsteadOf = "gist:"
pushInsteadOf = "git://gist.github.com/"

[url "git://gist.github.com/"]
insteadOf = "gist:"

[url "git@heroku.com:"]
insteadOf = "heroku:"

[help]
autocorrect = 5

[core]
excludesfile = /Users/julien/.gitignore_global

[merge]
tool = threesome

[mergetool "threesome"]
cmd = "mvim -f $BASE $LOCAL $REMOTE $MERGED -c 'ThreesomeInit'"
trustExitCode = true

0 comments on commit 47bdf5b

Please sign in to comment.