dotfiles/.gitconfig

38 lines
697 B
INI
Raw Normal View History

2012-04-19 14:23:13 +00:00
[user]
2012-11-12 19:55:25 +00:00
name = Michael Campagnaro
email = mikecampo@gmail.com
2012-04-19 14:23:13 +00:00
[diff]
[color]
2012-11-12 19:55:25 +00:00
ui = auto
2012-04-19 14:23:13 +00:00
[alias]
2012-11-12 19:55:25 +00:00
p = push
st = status
ci = commit
co = checkout
di = diff
dc = diff --cached
amend = commit --amend
aa = add --all
head = !git l -1
h = !git head
hp = "!source ~/.githelpers && show_git_head"
r = !git l -20
re = remote
ra = !git r --all
ff = merge --ff-only
pullff = pull --ff-only
noff = merge --no-ff
l = "!source ~/.githelpers && pretty_git_log"
la = !git l --all
div = divergence
gn = goodness
gnc = goodness --cached
fa = fetch --all
pom = push origin master
b = branch
ds = diff --stat=160,120
dh1 = diff HEAD~1
2012-04-19 14:23:13 +00:00
[merge]
2012-11-12 19:55:25 +00:00
tool = vimdiff