2012-05-28 15:16:38 +00:00
|
|
|
[include]
|
2012-09-11 17:08:35 +00:00
|
|
|
path = ~/.gitconfig.user
|
2012-05-28 15:16:38 +00:00
|
|
|
|
|
|
|
[core]
|
|
|
|
excludesfile = ~/.gitignore
|
|
|
|
autocrlf = input
|
|
|
|
eol = lf
|
2016-07-28 08:54:55 +00:00
|
|
|
pager = diff-so-fancy | less --tabs=2 -RFX
|
2012-05-28 15:16:38 +00:00
|
|
|
|
|
|
|
[color]
|
|
|
|
ui = auto
|
2016-06-15 19:30:24 +00:00
|
|
|
|
2012-05-28 15:16:38 +00:00
|
|
|
[color "branch"]
|
2012-09-11 18:08:40 +00:00
|
|
|
current = yellow reverse
|
2012-05-28 15:16:38 +00:00
|
|
|
local = yellow
|
|
|
|
remote = green
|
2016-06-15 19:30:24 +00:00
|
|
|
|
2012-05-28 15:16:38 +00:00
|
|
|
[color "diff"]
|
2016-08-17 20:20:34 +00:00
|
|
|
meta = yellow
|
|
|
|
commit = green
|
|
|
|
frag = magenta
|
|
|
|
old = red
|
|
|
|
new = green
|
2012-05-28 15:16:38 +00:00
|
|
|
whitespace = red reverse
|
2016-06-15 19:30:24 +00:00
|
|
|
|
2016-07-29 13:04:23 +00:00
|
|
|
[color "diff-highlight"]
|
2016-08-17 20:20:34 +00:00
|
|
|
newNormal = green
|
|
|
|
newHighlight = green 22
|
|
|
|
oldNormal = red
|
|
|
|
oldHighlight = red 52
|
2016-07-29 13:04:23 +00:00
|
|
|
|
2012-09-11 18:08:40 +00:00
|
|
|
[color "status"]
|
|
|
|
added = yellow
|
|
|
|
changed = green
|
2012-05-28 15:16:38 +00:00
|
|
|
untracked = cyan
|
|
|
|
|
|
|
|
[alias]
|
2013-05-11 20:26:43 +00:00
|
|
|
git = !git
|
2014-02-01 15:07:33 +00:00
|
|
|
cl = clean -f -d
|
2012-05-28 15:16:38 +00:00
|
|
|
st = status
|
|
|
|
cm = commit
|
|
|
|
co = checkout
|
2012-07-10 17:00:11 +00:00
|
|
|
br = branch -a
|
2012-05-28 15:16:38 +00:00
|
|
|
ps = push
|
|
|
|
pl = pull
|
2012-05-30 18:34:12 +00:00
|
|
|
mg = merge
|
2013-07-05 16:49:04 +00:00
|
|
|
ffs = flow feature start
|
|
|
|
fff = flow feature finish
|
2014-07-18 16:30:36 +00:00
|
|
|
ffp = flow feature publish
|
2013-07-05 16:49:04 +00:00
|
|
|
fi = flow init
|
2012-09-14 16:20:22 +00:00
|
|
|
rs = reset HEAD --hard
|
2012-09-05 13:32:17 +00:00
|
|
|
hist = log --pretty=format:\"%h | %ad | %an | %s%d \" --graph --date=local
|
2016-08-17 20:20:34 +00:00
|
|
|
l = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(blue)<%an>%Creset' --abbrev-commit
|
2012-05-28 15:16:38 +00:00
|
|
|
lo = log --graph --decorate --pretty=oneline --abbrev-commit --all
|
2012-10-09 17:11:42 +00:00
|
|
|
pu = !"git fetch origin -v; git fetch upstream -v; git merge upstream/master"
|
2012-09-18 12:09:25 +00:00
|
|
|
|
|
|
|
[diff]
|
2016-12-26 08:36:23 +00:00
|
|
|
tool = nvim -d
|
|
|
|
guitool = nvim -d
|
2016-06-15 19:30:24 +00:00
|
|
|
compactionHeuristic = true
|
2012-09-18 12:09:25 +00:00
|
|
|
|
2012-09-20 12:18:56 +00:00
|
|
|
[mergetool]
|
2012-09-18 12:09:25 +00:00
|
|
|
prompt = false
|
2012-09-20 12:18:56 +00:00
|
|
|
keepBackup = false
|
2015-05-05 11:19:51 +00:00
|
|
|
|
2015-02-21 13:24:00 +00:00
|
|
|
[push]
|
2015-05-05 11:19:51 +00:00
|
|
|
default = simple
|
2016-06-15 19:30:24 +00:00
|
|
|
|
|
|
|
[interactive]
|
|
|
|
diffFilter = diff-highlight
|