-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
55 lines (40 loc) · 1004 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[user]
name = woutersioen
email = wouter.sioen@gmail.com
signingkey = C1E6817E6CA2642F
[pretty]
concise = %C(yellow)%h%C(reset) %s %C(bold black)(%an, %ar)%C(reset)%C(bold blue)%d%C(reset)
[color]
ui = true
[core]
excludesfile = ~/.global_gitignore
pager = delta
[push]
default = current
autoSetupRemote = true
[pull]
rebase = true
[fetch]
prune = true
[filter "media"]
clean = git-media-clean %f
smudge = git-media-smudge %f
[alias]
lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
[init]
templatedir = ~/.git_template
defaultBranch = main
[diff]
algorithm = patience
colorMoved = default
[difftool]
prompt = false
[merge]
renamelimit = 5000
[commit]
gpgsign = true
[delta]
features = side-by-side line-numbers decorations
syntax-theme = Solarized (light)
[interactive]
diffFilter = delta --color-only