-
Notifications
You must be signed in to change notification settings - Fork 1
/
gitconfig
36 lines (36 loc) · 981 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]
name = Dan Sowter
email = dan@stacktracehq.com
signingkey = 5D89035C094C6207
[color]
diff = auto
status = auto
branch = auto
[core]
editor = micro
autocrlf = input
excludesfile = ~/.gitignore
pager = delta
[apply]
whitespace = nowarn
[format]
pretty = %C(yellow)%h%Creset %s %C(red)(%an, %cr)%Creset
[credential]
helper = !/Library/Java/JavaVirtualMachines/jdk1.8.0_74.jdk/Contents/Home/jre/bin/java -Ddebug=false -Djava.net.useSystemProxies=true -jar /usr/local/Cellar/git-credential-manager/2.0.3/libexec/git-credential-manager-2.0.3.jar
[commit]
gpgsign = true
[pull]
rebase = true
[rebase]
autosquash = true
[interactive]
diffFilter = delta --color-only
[delta]
features = line-numbers decorations
whitespace-error-style = 22 reverse
[delta "decorations"]
commit-decoration-style = bold yellow box ul
file-decoration-style = none
file-style = bold yellow ul
[remote "origin"]
fetch = +refs/pull/*:refs/remotes/origin/pull/*