-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitconfig
46 lines (46 loc) · 1.23 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
[user]
name = Lukas Bischof
email = [email protected]
signingKey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMcG42w+ZxsHsQ1JjR/CCQ79fWaNa2ZT2YuMx4jy702q
[core]
excludesfile = /Users/lukas/.gitignore_global
editor = vim
[difftool "sourcetree"]
cmd = opendiff \"$LOCAL\" \"$REMOTE\"
path =
[mergetool "sourcetree"]
cmd = /Applications/Sourcetree.app/Contents/Resources/opendiff-w.sh \"$LOCAL\" \"$REMOTE\" -ancestor \"$BASE\" -merge \"$MERGED\"
trustExitCode = true
[color]
ui = true
[alias]
s = status -s
lg = log --stat --decorate --graph --show-signature
ds = diff --staged
dl = diff HEAD^1
unstage = restore --staged
badass = push --no-verify --force
aliases = "!f() { git config --get-regexp 'alias.*' | colrm 1 6 | sed 's/[ ]/ = /' | sort; }; f"
[gpg]
format = ssh
[gpg "ssh"]
program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign"
allowedSignersFile = /Users/lukas/.ssh/allowed_signers
[commit]
gpgSign = true
[tag]
forceSignAnnotated = false
gpgsign = true
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[pull]
rebase = true
[init]
defaultBranch = main
[push]
autoSetupRemote = true
[includeIf "gitdir:~/p/"]
path = ~/p/.gitconfig