-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdot_gitconfig
More file actions
60 lines (60 loc) · 1.61 KB
/
Copy pathdot_gitconfig
File metadata and controls
60 lines (60 loc) · 1.61 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
[core]
excludesfile = "~/.gitignore"
eol = lf
autocrlf = input
[credential]
helper = store
[rerere]
enabled = 1
autoupdate = 1
[pull]
ff = only
[push]
default = current
recurseSubmodules = on-demand
autoSetupRemote = true
[merge]
ff = false
tool = vimdiff2
[submodule]
fetchJobs = 0
[status]
short = true
showUntrackedFiles = all
[user]
useConfigOnly = true
name = Nax
email = 4265415+Nax@users.noreply.github.com
[color]
ui = auto
[color "branch"]
current = yellow bold
local = green bold
remote = cyan bold
[color "diff"]
meta = yellow bold
frag = magenta bold
old = red bold
new = green bold
whitespace = red reverse
[color "status"]
added = green bold
changed = yellow bold
untracked = red bold
[mergetool]
prompt = true
[mergetool "vimdiff2"]
cmd = "$VISUAL" -f -d -c 'wincmd l' "$LOCAL" "$MERGED" "$REMOTE"
[include]
path = ~/.gitconfig.local
[alias]
cloner = "clone --recursive -j8"
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[diff]
algorithm = histogram
[init]
defaultBranch = master