-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
100 lines (100 loc) · 2.58 KB
/
.gitconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[init]
templatedir = ~/.git_template
[include]
path = /etc/git/.gitconfig.local
[core]
legacyheaders = false
quotepath = false
autocrlf = input
pager = less -RSFX
whitespace=fix,-indent-with-non-tab,trailing-space,cr-at-eol,space-before-tab,tabwidth=4
excludesfile = ~/.gitignore
packedGitLimit = 512m
packedGitWindowSize = 512m
compression = 9
[branch]
autosetupmerge = always
autosetuprebase = always
[apply]
whitespace = fix
[advice]
pushNonFastForward = false
statusHints = false
[format]
numbered = auto
[status]
submodulesummary = true
[column]
ui = auto
[rerere]
enabled = true
autoupdate = true
[pack]
deltaCacheSize = 2047m
packSizeLimit = 2047m
windowMemory = 2047m
[repack]
usedeltabaseoffset = true
[push]
default = matching
[merge]
log = true
tool = vimdiff3
[mergetool]
prompt = true
[mergetool "vimdiff3"]
cmd = vim -f -d -c \"wincmd J\" -c \"wincmd =\" \"$MERGED\" \"$LOCAL\" \"$BASE\" \"$REMOTE\"
trustExitCode = true
[log]
decorate = true
[help]
autocorrect = 0
format = man
[color]
pager = true
ui = true
diff = auto
status = auto
branch = auto
[color "branch"]
local = yellow
remote = green
[color "status"]
added = yellow
changed = green
untracked = cyan
[color "diff"]
meta = yellow bold
frag = magenta
plain = white bold
old = red
new = green
commit = yellow bold
func = cyan bold
[alias]
ignore = update-index --assume-unchanged
unignore = update-index --no-assume-unchanged
lgs = log --stat --color --decorate --all --graph --pretty=format:'%Cred%h%Creset %Cred%d%Creset :: %Cblue%ad%Creset ( %Cblue%ar%Creset ) :: %C(yellow)%s%Creset :: %Cgreen%an%Creset :: %Cblue%G?%Creset %n %N' --abbrev-commit
lg = log --stat --color --decorate --graph --pretty=format:'%Cred%h%Creset %Cred%d%Creset :: %Cblue%ad%Creset ( %Cblue%ar%Creset ) :: %C(yellow)%s%Creset :: %Cgreen%an%Creset :: %Cblue%G?%Creset %n %N' --abbrev-commit
shlg = shortlog -s -n
st = status
ci = commit
br = branch
co = checkout
df = diff --word-diff
ls = ls-files
datetag = !git tag `date \"+%Y%m%d%H%M\"`
poppers = !git log -M -C --format=\"format:%aN\" --grep \"Revert\" | sort | uniq -c | sort -n
ctags = !.git/hooks/ctags
unmerged = branch -r --no-merged
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[gpg]
program = gpg
[user]
signingkey = EDE5CEA167742D08
[commit]
gpgsign = true