-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitconfig
More file actions
294 lines (230 loc) · 6.31 KB
/
.gitconfig
File metadata and controls
294 lines (230 loc) · 6.31 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
# Sample gitconfig
#
# https://github.com/skwp/dotfiles/blob/master/git/gitconfig
############################################################
# Includes
############################################################
[include]
path = ~/.private/.gitconfig-user
path = ~/.dotjitsu/.gitconfig-alias
[includeIf "gitdir:~/work/"]
path = ~/.private/.gitconfig-work
############################################################
# Core / init
############################################################
[core]
attributesfile = ~/.gitattributes
autocrlf = input
commitGraph = true
compression = 1
pager = delta
editor = micro
excludesfile = ~/.gitignore
fsmonitor = true
ignorecase = false
preloadindex = true
packedGitLimit = 1512m
packedGitWindowSize = 1512m
quotepath = false
fscache = true
[transfer]
compression = 1
[pack]
compression = 6
threads = 16
useZstd = true
deltaCacheSize = 256m
windowMemory = 256m
allowPackReuse = true
writeReverseIndex = true
[init]
templatedir = ~/.dotjitsu/packages/git/templates
defaultBranch = main
############################################################
# Color / format / log
############################################################
[color]
ui = true
[color "branch"]
current = yellow reverse
local = yellow
remote = green
[color "diff"]
meta = yellow
frag = magenta bold
old = red bold
new = green bold
commit = yellow bold
whitespace = red reverse
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[format]
pretty = format:%C(blue)%ad%Creset %C(yellow)%h%C(green)%d%Creset %C(blue)%s %C(magenta) [%an]%Creset
[log]
# Use abbrev SHAs whenever possible/relevant instead of full 40 chars
abbrevCommit = true
# date = iso
[grep]
extendRegexp = true
lineNumber = true
[branch]
autosetuprebase = always # track remote and rebase by default
[help]
autocorrect = 1 # aggressively auto-correct mistyped git commands
############################################################
# Delta / diff / difftool / merge
############################################################
[interactive]
diffFilter = delta --color-only
[delta]
features = side-by-side line-numbers decorations omit-code-fragment
true-color = always
whitespace-error-style = 22 reverse
line-numbers = true
paging = never
navigate = true
hyperlinks = true
hyperlinks-file-link-format = "vscode://file/{path}:{line}"
zero-style = dim syntax
theme = 1337
[delta "decorations"]
commit-decoration-style = bold yellow box ul
file-style = bold yellow ul
file-decoration-style = none
# hunk-header-style = line-number omit-code-fragment
# hunk-header-decoration-style = none
# hunk-header-file-style = red
# hunk-header-line-number-style = "#067a00"
# hunk-header-style = none
[diff]
colorMoved = default
tool = smartsynchronize
context = 1
[difftool]
prompt = false
colorMoved = default
[difftool "smartsynchronize"]
cmd = /Applications/SmartSynchronize.app/Contents/MacOS/SmartSynchronize $LOCAL $REMOTE
[merge]
conflictStyle = zdiff3
############################################################
# Fetch / pull / protocol / HTTP
############################################################
[fetch]
prune = true
pruneTags = true
[pull]
# rebase = true
ff = only
prune = true
twohead = ort # https://git-scm.com/docs/merge-strategies#Documentation/merge-strategies.txt-ort
[http]
# Increase HTTP buffer to avoid issues with very large pushes
postBuffer = 524288000
[push]
recurseSubmodules = check # refuse push if submodule commits aren't pushed
# See `git help config` (search for push.default) for other modes
default = simple
autoSetupRemote = true
[protocol]
version = 2
############################################################
# Commit / rebase / stash / index
############################################################
[commit]
gpgSign = false
verbose = true
[rebase]
stat = true
autostash = true
autosquash = true
[stash]
showPatch = true # show diff when stashing changes
[index]
threads = true # speed up index operations on multi-core
[advice]
statusHints = off
skippedCherryPicks = false
[apply]
whitespace = nowarn # don't warn on whitespace in patches
[rerere]
# Remember previous conflict resolutions and reuse them
enabled = true
############################################################
# Submodules / GC / LFS
############################################################
[submodule]
recurse = true
fetchJobs = 10
[gc]
autoDetach = false
writeCommitGraph = true
auto = 0
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
############################################################
# Credentials / URLs / Hub
############################################################
[credential "https://gametechgit.gamesglobal.com"]
provider = generic
# Problematic with mise
# [remote "origin"]
# tagopt = "--tags -f"
[credential "https://github.com"]
helper =
helper = !/opt/homebrew/bin/gh auth git-credential
[credential "https://gist.github.com"]
helper =
helper = !/opt/homebrew/bin/gh auth git-credential
[url "ssh://github.com/"]
pushInsteadOf = https://github.com/
[url "ssh://gitlab.com/"]
pushInsteadOf = https://gitlab.com/
[hub]
protocol = https
############################################################
# Tools / UI / Git-flow / Tags / Misc
############################################################
[tig]
line-graphics = yes # Disable graphics characters
tab-size = 4 # Number of spaces per tab
mouse = no
[gui]
pruneDuringFetch = true
# Git-flow style branching, with main as master-equivalent
[gitflow "branch"]
develop = develop
master = main
[gitflow "prefix"]
feature = feature/
release = release/
hotfix = hotfix/
support = support/
versiontag = v
[smartgit "submodule"]
fetchalways = false
update = true
initializenew = true
[diff-so-fancy]
first-run = true
[ghq]
root = ~/code
[taggrouping]
groups =
singles =
[tag]
# Sort tags as version numbers whenever applicable, so 1.10.2 is AFTER 1.2.0.
sort = version:refname
[versionsort]
prereleaseSuffix = -pre
prereleaseSuffix = .pre
prereleaseSuffix = -beta
prereleaseSuffix = .beta
prereleaseSuffix = -rc
prereleaseSuffix = .rc