-
Notifications
You must be signed in to change notification settings - Fork 2
/
gitconfig
60 lines (43 loc) · 1018 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
56
57
58
59
[user]
name = Johnathan Gilday
email = [email protected]
signingkey = ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAID0+jzHG64Byg89pgWUclzk12nmMwRxCNWnhVWhOx4Og
[alias]
amend = commit --amend --no-edit
force-pull = "!git fetch ; git reset --hard @{u}"
s = status
yeet = push --force-with-lease
[color]
ui = true
[push]
default = simple
autoSetupRemote = true
[core]
ignorecase = false
[credential]
helper = cache --timeout=300
[merge]
tool = kdiff3
[mergetool "kdiff3"]
path = kdiff3
trustExitCode = false
keepBackup = false
[mergetool "meld"]
trustExitCode = false
cmd = meld $LOCAL $BASE $REMOTE -o $MERGED --auto-merge
[pull]
rebase = true
[init]
defaultBranch = main
# signed commits
[gpg]
format = ssh
[gpg "ssh"]
program = "/Applications/1Password.app/Contents/MacOS/op-ssh-sign"
allowedSignersFile = ~/.ssh/allowed_signers
[commit]
gpgsign = true
[includeIf "gitdir:github/openpixee/"]
path = ~/.gitconfig-pixee
[includeIf "gitdir:github/pixee/"]
path = ~/.gitconfig-pixee