2017-02-18 18:05:08 +00:00
|
|
|
[include]
|
|
|
|
path = ~/.gitconfig.platform
|
2019-12-02 16:45:33 +00:00
|
|
|
path = ~/.gitconfig.private
|
2013-04-21 23:36:08 +00:00
|
|
|
[merge]
|
|
|
|
summary = true
|
2013-05-08 02:34:57 +00:00
|
|
|
tool = vimdiff
|
|
|
|
[core]
|
2016-10-23 16:44:54 +00:00
|
|
|
excludesfile = ~/.gitignore
|
2019-12-02 16:45:33 +00:00
|
|
|
hookspath = ~/.git_hooks
|
2019-12-31 05:38:46 +00:00
|
|
|
preloadindex = true
|
|
|
|
fscache = true
|
2013-05-08 02:34:57 +00:00
|
|
|
[push]
|
2015-10-16 05:09:39 +00:00
|
|
|
default = upstream
|
2013-05-08 02:34:57 +00:00
|
|
|
[diff]
|
2015-10-16 05:09:39 +00:00
|
|
|
algorithm = patience
|
2012-04-19 14:23:13 +00:00
|
|
|
[color]
|
2013-04-21 23:36:08 +00:00
|
|
|
diff = auto
|
|
|
|
status = auto
|
|
|
|
branch = auto
|
|
|
|
interactive = auto
|
|
|
|
ui = true
|
|
|
|
pager = true
|
|
|
|
[color "branch"]
|
|
|
|
current = yellow reverse
|
|
|
|
local = yellow
|
|
|
|
remote = green
|
|
|
|
[color "diff"]
|
|
|
|
meta = blue
|
|
|
|
frag = magenta
|
|
|
|
old = red
|
|
|
|
new = green
|
2015-10-16 05:09:39 +00:00
|
|
|
[filter "lfs"]
|
2019-12-02 16:45:33 +00:00
|
|
|
clean = git-lfs clean -- %f
|
|
|
|
smudge = git-lfs smudge -- %f
|
2015-10-16 05:09:39 +00:00
|
|
|
required = true
|
2019-12-02 16:45:33 +00:00
|
|
|
process = git-lfs filter-process
|
2015-10-16 05:09:39 +00:00
|
|
|
[alias]
|
2015-11-18 02:50:00 +00:00
|
|
|
lg = log --graph --pretty=format:'%Cred%h%Creset %C(yellow)%an [%cn]%d%Creset %s %Cgreen(%cr)%Creset' --date=relative
|
2019-12-31 05:38:46 +00:00
|
|
|
start = !git init && git commit --allow-empty -m \"Initial commit\"
|
2015-10-16 05:09:39 +00:00
|
|
|
[rerere]
|
|
|
|
enabled = true
|
2019-12-31 05:38:46 +00:00
|
|
|
[gc]
|
2019-12-02 16:45:33 +00:00
|
|
|
auto = 0
|