dotfiles/git/gitconfig.include

18 lines
421 B
Plaintext
Raw Normal View History

2012-11-08 14:54:46 +01:00
[color]
ui = auto
interactive = auto
2012-11-06 23:38:08 +01:00
[alias]
2013-02-08 11:19:14 +01:00
st = status -sb
2013-02-06 17:37:44 +01:00
ci = commit
co = checkout
pr = pull --rebase
2013-02-08 11:19:14 +01:00
dc = diff --cached
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
2012-11-08 14:57:02 +01:00
ll = log --stat --abbrev-commit
2013-02-08 11:19:14 +01:00
amend = commit --amend -C HEAD
[diff]
tool = vimdiff
[merge]
tool = vimdiff
# vim: set filetype=gitconfig: