-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitconfig
54 lines (42 loc) · 1.04 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
47
48
49
50
51
52
53
54
[user]
name = mb bischoff
email = [email protected]
signingkey = key::ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJVrmv/OzFTjgGD0CIZgUab0+WUs0j6WpL11HGeTRuIb ssh key (mb)
[core]
excludesfile = ~/.gitignore
editor = mate -w
[apply]
whitespace = nowarn
[push]
default = current
[alias]
co = checkout
rh = reset --hard
undo = reset --soft HEAD~1
[mergetool]
keepBackup = false
[color]
ui = true
[filter "media"]
required = true
clean = git media clean %f
smudge = git media smudge %f
[filter "hawser"]
clean = git hawser clean %f
smudge = git hawser smudge %f
required = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
required = true
process = git-lfs filter-process
[commit]
gpgsign = true
[gpg]
format = ssh
program = /usr/local/MacGPG2/bin/gpg2
[gpg "ssh"]
program = /Applications/1Password.app/Contents/MacOS/op-ssh-sign
[mergetool "Kaleidoscope"]
cmd = ksdiff --merge --output \"$MERGED\" --base \"$BASE\" -- \"$LOCAL\" --snapshot \"$REMOTE\" --snapshot
trustExitCode = true