repos / dotfiles

my dotfiles

dotfiles / dot
Eric Bower  ·  2025-07-14

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[format]
20  useAutoBase = whenAble
21[alias]
22  u = remote update --prune
23  a = add -A
24  m = commit -S
25  s = commit -S --amend --no-edit
26  l = !git --no-pager log --oneline -n 15
27  t = log --graph --oneline --all
28  mo = merge origin/main