-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitconfig
112 lines (112 loc) · 1.91 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
101
102
103
104
105
106
107
108
109
110
111
112
[core]
legacyheaders = false
quotePath = false
trustctime = false
precomposeUnicode = false
pager = cat
logAllRefUpdates = true
eol = lf
autocrlf = false
commitGraph = true
ignoreCase = false
untrackedCache = true
[repack]
usedeltabaseoffset = true
[merge]
log = true
conflictstyle = merge
keepbackup = false
[apply]
whitespace = fix
[help]
autocorrect = 1
[rerere]
enabled = true
autoUpdate = true
[color]
diff = auto
status = auto
branch = auto
interactive = auto
ui = always
[color "diff"]
meta = yellow bold
frag = magenta
plain = white bold
old = red bold
new = green bold
commit = yellow bold
func = green dim
whitespace = red reverse
[color "status"]
added = yellow
changed = green
untracked = cyan
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[diff]
renames = copies
algorithm = histogram
compactionHeuristic = true
wsErrorHighlight = all
context = 4
[diff "bin"]
textconv = hexdump -v -C
[credential]
helper = store
[status]
relativePaths = true
showUntrackedFiles = no
[pull]
rebase = true
[push]
default = current
followTags = true
autoSetupRemote = true
[rebase]
abbreviateCommands = true
autosquash = true
updateRefs = true
[alias]
dif = diff
git = !exec git
[branch]
autosetupmerge = always
autosetuprebase = always
[http]
sslverify = false
followRedirects = true
postBuffer = 1048576000
[submodule]
fetchJobs = 0
[fetch]
prune = true
pruneTags = true
tags = true
recurseSubmodules = true
parallel = 0
writeCommitGraph = true
[tag]
sort = version:refname
[gc]
writeCommitGraph = true
[am]
threeWay = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[init]
defaultBranch = master
[receive]
advertisePushOptions = true
procReceiveRefs = refs/for
[clone]
defaultRemoteName = origin
[advice]
skippedCherryPicks = false
[include]
path = ~/.gitconfig.local