conf/.gitconfig

29 lines
516 B
INI
Raw Normal View History

2012-11-22 00:08:53 +00:00
[color]
diff = auto
status = auto
branch = auto
[user]
2014-06-11 09:43:59 +00:00
name = nemunaire
2014-02-28 09:33:17 +00:00
email = nemunaire@nemunai.re
2012-11-22 00:08:53 +00:00
[alias]
a = add
c = commit -a
k = checkout
2014-10-07 13:42:48 +00:00
br = branch
2012-11-22 00:08:53 +00:00
ci = commit
ca = commit --amend
2014-10-07 13:42:48 +00:00
st = status -sb
2014-04-17 08:13:50 +00:00
graph = log --graph --oneline --branches --all --decorate
2014-10-07 13:42:48 +00:00
unstage = reset HEAD
uncommit = reset --soft HEAD^
wdiff = diff --word-diff
lastdiff = diff HEAD^ HEAD
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]
2014-09-10 10:55:34 +00:00
default = matching
2016-03-04 13:27:25 +00:00
[rebase]
autostash = true