-
Notifications
You must be signed in to change notification settings - Fork 6
/
.gitconfig
46 lines (46 loc) · 1.02 KB
/
.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
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
[user]
email = [email protected]
name = Chase Sillevis
signingKey = 8EB884FD
[push]
default = simple
autoSetupRemote = true
[color]
ui = auto
[commit]
gpgSign = true
[tag]
gpgSign = true
[gpg]
program = gpg2
[log]
decorate = true
abbrevCommit = true
[format]
pretty = %Cred%h%Creset - %C(bold blue)%G? %aN%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)
[github]
user = deviavir
[http "https://gopkg.in"]
followRedirects = true
[core]
excludesfile = /home/chase/.gitignore_global
[branch "master"]
mergeoptions = --ff-only
[diff "gpg"]
textconv = gpg --no-tty --decrypt
cachetextconv = false
[diff "ansible-vault"]
textconv = ansible-vault view
cachetextconv = false
[http "https://gl.blockstream.io/"]
sslKey = /etc/docker/certs.d/glregistry.blockstream.io/gl.key
sslCert = /etc/docker/certs.d/glregistry.blockstream.io/gl.cert
sslVerify = false
[pull]
rebase = true
[init]
defaultBranch = main