dotfiles/.gitconfig

52 lines
915 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]
2013-04-04 18:37:38 +00:00
b = branch
h = !git head
l = !git ll -25
2012-11-12 19:55:25 +00:00
p = push
2013-04-04 18:37:38 +00:00
r = reset
s = stash
x = reset --hard
sl = stash list
sp = stash pop
sd = stash drop
sa = stash apply
2012-11-12 19:55:25 +00:00
st = status
ci = commit
2013-04-04 18:37:38 +00:00
cp = cherry-pick
2012-11-12 19:55:25 +00:00
co = checkout
dc = diff --cached
2013-04-04 18:37:38 +00:00
di = diff
2012-11-12 19:55:25 +00:00
amend = commit --amend
aa = add --all
head = !git l -1
hp = "!source ~/.githelpers && show_git_head"
re = remote
ra = !git r --all
ff = merge --ff-only
2012-12-14 17:06:51 +00:00
pff = pull --ff-only
2012-11-12 19:55:25 +00:00
noff = merge --no-ff
2013-04-04 18:37:38 +00:00
la = !git ll --all
ll = "!source ~/.githelpers && pretty_git_log"
2012-11-12 19:55:25 +00:00
div = divergence
gn = goodness
gnc = goodness --cached
fa = fetch --all
pom = push origin master
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
2012-12-14 17:06:51 +00:00
[core]
editor = /usr/bin/vim
2013-04-04 18:37:38 +00:00
[push]
2013-04-20 18:00:26 +00:00
default = tracking
2013-04-21 17:50:28 +00:00
[github]
user = mikecampo