forked from Ven0m0/dot-termux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitconfig
More file actions
174 lines (174 loc) · 3.32 KB
/
.gitconfig
File metadata and controls
174 lines (174 loc) · 3.32 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
[core]
excludesfile = ~/.gitignore
attributesfile = ~/.gitattributes
# pager = delta
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
editor = micro
autocrlf = input
preloadIndex = true
eol = native
compression = 1
multiPackIndex = true
sparseCheckout = true
fsyncMethod = batch
repositoryformatversion = 1
fileMode = true
deltaBaseCacheLimit = 1g
preferSymlinkRefs = true
symlinks = true
splitIndex = true
[color]
branch = auto
diff = auto
status = auto
ui = auto
[push]
default = simple
autoSetupRemote = true
recurseSubmodules = on-demand
useBitmaps = true
[pull]
ff = only
rebase = true
[clone]
filterSubmodules = true
[pack]
threads = 0
allowPackReuse = true
useSparse = true
indexVersion = 2
useBitmapBoundaryTraversal = true
useBitmaps = true
preferBitmapTips = true
writeBitmapHashCache = true
writeBitmapLookupTable = true
window = 50
depth = 50
deltaCacheSize = 512m
compression = 9
[fetch]
prune = true
pruneTags = true
parallel = 0
fsckobjects = true
recurseSubmodules = true
negotiationAlgorithm = skipping
[receive]
autogc = true
shallowUpdate = true
[submodule]
fetchJobs = 0
[rebase]
autoSquash = true
autoStash = true
updateRefs = true
backend = merge
missingCommitsCheck = true
abbreviateCommands = true
[fsck]
duplicateEntries = true
gitmodulesSymlink = true
gitmodulesUpdate = true
[gc]
auto = 256
autoPackLimit = 50
autoDetach = true
packRefs = true
reflogExpireUnreachable = 0
reflogExpire = 7.days.ago
aggressive = false
aggressiveDepth = 250
aggressiveWindow = 250
repackFilter = blob:none
pruneExpire = 7.days.ago
[repack]
cruftThreads = 0
writeBitmaps = true
useDeltaBaseOffset = true
[checkout]
workers = 0
[grep]
threads = 0
[index]
skipHash = true
sparse = true
threads = 0
version = 4
[rerere]
enabled = true
autoupdate = true
[http]
sslBackend = openssl
maxRequests = 10
version = HTTP/2
sslVersion = tlsv1.3
postBuffer = 104857600
followRedirects = true
[gui]
fastCopyBlame = true
pruneDuringFetch = true
encoding = utf-8
[help]
autoCorrect = prompt
[apply]
whitespace = fix
[delta]
hyperlinks = true
features = decorations
line-numbers = true
decorations = true
navigate = true
[diff]
algorithm = histogram
suppressBlankEmpty = true
renames = copies
colorMoved = plain
mnemonicprefix = true
external = difft
compactionHeuristic = true
[difftool]
prompt = false
[diff-so-fancy]
markEmptyLines = false
stripLeadingSymbols = true
[icdiff]
options = --line-numbers
[merge]
conflictStyle = zdiff3
tool = meld
[mergetool]
prompt = false
keepBackup = false
hideResolved = true
[protocol]
version = 2
[feature]
manyFiles = true
experimental = true
[worktree]
useRelativePaths = true
[status]
aheadBehind = true
showUntrackedFiles = no
short = true
submoduleSummary = true
[maintenance]
strategy = incremental
[maintenance "prefetch"]
enabled = true
[maintenance "gc"]
enabled = true
[maintenance "loose-objects"]
enabled = true
[maintenance "incremental-repack"]
enabled = true
[maintenance "pack-refs"]
enabled = true
[maintenance "reflog-expire"]
enabled = true
[maintenance "rerere-gc"]
enabled = true
[maintenance "worktree-prune"]
enabled = true
[alias]
sub = submodule update --init --recursive