-
Notifications
You must be signed in to change notification settings - Fork 1
/
gitconfig
36 lines (36 loc) · 857 Bytes
/
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
[user]
# Please modify these lines
# email = your_email@provider
# name = Your Name Here
[push]
default = simple
[color]
ui = true
[url "[email protected]:"]
insteadOf = https://github.com/
[alias]
addnw = !sh -c 'git diff -U0 -w --no-color "$@" | git apply --cached --ignore-whitespace --unidiff-zero -'
[core]
pager = delta
[interactive]
diffFilter = delta --color-only
[delta]
features = side-by-side line-numbers decorations
whitespace-error-style = 22 reverse
[delta "decorations"]
commit-decoration-style = bold yellow box ul
file-style = bold yellow ul
file-decoration-style = none
[diff]
algorithm = histogram
[rebase]
autosquash = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[merge]
conflictstyle = zdiff3
[rerere]
enabled = true