conf/.gitconfig

28 lines
462 B
INI
Raw Normal View History

2012-11-22 00:08:53 +00:00
[color]
diff = auto
status = auto
branch = auto
[user]
name = Némunaire
email = nemunaire@pomail.fr
[alias]
a = add
c = commit -a
k = checkout
ci = commit
ca = commit --amend
co = checkout
st = status
br = branch
graph = log --graph --oneline --branches --all
2013-12-28 15:37:18 +00:00
st=status -sb
unstage=reset HEAD
uncommit=reset --soft HEAD^
wdiff=diff --word-diff
2012-11-22 00:08:53 +00:00
[core]
editor = emacs -nw
excludesfile = ~/.gitignore
autocrlf = input
2013-12-28 15:37:18 +00:00
[push]
default = simple