-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitconfig
252 lines (204 loc) · 4.81 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
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
# Sample gitconfig
#
# https://github.com/skwp/dotfiles/blob/master/git/gitconfig
[include]
path = ~/.private/.gitconfig-user
path = ~/.dotjitsu/.gitconfig-alias
[includeIf "gitdir:~/work/"]
path = ~/.private/.gitconfig-work
[hub]
protocol = https
[color]
ui = true
[init]
templatedir = ~/.dotjitsu/packages/git/templates
defaultBranch = main
[pager]
# insanely beautiful diffs ==> npm install -g diff-so-fancy
#diff = diff-so-fancy# | less --tabs=4 -RFX
#show = diff-so-fancy# | less --tabs=4 -RFX
# [interactive]
# diffFilter = diff-so-fancy
[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
[format]
pretty = format:%C(blue)%ad%Creset %C(yellow)%h%C(green)%d%Creset %C(blue)%s %C(magenta) [%an]%Creset
[core]
attributesfile = ~/.gitattributes
autocrlf = input
commitGraph = true
compression = 1
editor = micro
excludesfile = ~/.gitignore
ignorecase = false
packedGitLimit = 1512m
packedGitWindowSize = 1512m
quotepath = false
[pack]
deltaCacheSize = 1024m
packSizeLimit = 1024m
windowMemory = 1024m
allowPackReuse = true
threads = 16
useSparse = true
writeReverseIndex = true
[branch]
autosetuprebase = always
[apply]
whitespace = nowarn
[mergetool]
keepBackup = false
[help]
autocorrect = 1
[push]
recurseSubmodules = check
# See `git help config` (search for push.default)
# for more information on different options of the below setting.
#
# Setting to git 2.0 default to suppress warning message
default = simple
[rerere]
# Remember my merges
# http://gitfu.wordpress.com/2008/04/20/git-rerere-rereremember-what-you-did-last-time/
enabled = true
[core]
pager = delta
fsmonitor = true
preloadindex = true
fscache = true
[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
[merge]
conflictstyle = diff3
[difftool]
prompt = false
colorMoved = default
[difftool "smartsynchronize"]
cmd = /Applications/SmartSynchronize.app/Contents/MacOS/SmartSynchronize $LOCAL $REMOTE
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[gc]
autoDetach = false
writeCommitGraph = true
auto = 0
[commit]
gpgSign = false
verbose = true
[pull]
rebase = true
prune = true
twohead = ort
[tig]
line-graphics = yes # Disable graphics characters
tab-size = 4 # Number of spaces per tab
mouse = no
[fetch]
prune = true
pruneTags = true
[gui]
pruneDuringFetch = true
[gitflow "branch"]
develop = master
master =
[gitflow "prefix"]
feature = feature/
release = release/
hotfix = hotfix/
support = support/
versiontag = v
[http]
postBuffer = 524288000
[color "diff-highlight"]
oldNormal = red bold
oldHighlight = red bold 52
newNormal = green bold
newHighlight = green bold 22
[diff-so-fancy]
first-run = true
[grep]
extendRegexp = true
lineNumber = true
[gpg]
#program = gpg2
[submodule]
recurse = true
fetchJobs = 10
[ghq]
root = ~/code
[rebase]
stat = true
autoStash = true
[smartgit "submodule"]
fetchalways = false
update = true
initializenew = true
[taggrouping]
groups =
singles =
[protocol]
version = 2
[credential]
helper = $HOMEBREW_PREFIX/share/gcm-core/git-credential-manager-core
helper =
helper = /usr/local/share/gcm-core/git-credential-manager
# [url "ssh://git@github.com"]
# insteadOf = https://github.com
[url "ssh://github.com/"]
pushInsteadOf = https://github.com/
[url "ssh://gitlab.com/"]
pushInsteadOf = https://gitlab.com/
[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
[user]
name = Johan Borestad
email = johan@borestad.com
[remote "origin"]
tagopt = "--tags -f"
[credential "http://git.home.arpa"]
provider = generic
[credential "https://diva.teliacompany.net"]
provider = generic
[alias]
trash = !mkdir -p .trash && git ls-files --others --exclude-standard | xargs mv -f -t .trash
[credential "https://dev.azure.com"]
useHttpPath = true