Eric Bower
·
2025-08-22
gitconfig
1[gpg]
2 program = gpg2
3[user]
4 signingkey = 7A51A47D76D3FD02
5 name = Eric Bower
6 email = me@erock.io
7[pull]
8 rebase = true
9[sendemail]
10 smtpserver = smtp.fastmail.com
11 smtpuser = me@erock.io
12 smtpencryption = tls
13 smtpserverport = 587
14 annotate = yes
15[init]
16 defaultBranch = main
17[diff]
18 renames = true
19 tool = vimdiff
20[format]
21 useAutoBase = whenAble
22[alias]
23 u = remote update --prune
24 a = add -A
25 m = commit -S
26 s = commit -S --amend --no-edit
27 l = !git --no-pager log --oneline -n 15
28 t = log --graph --oneline --all
29 mo = merge origin/main