cmd/voussoir.gitconfig
Ethan Dalool 9ecf058242 Remove gpgsign.
I'm tired of having the gpg-agent running on my system all the time
and having to give it my passphrase after every reboot. All of the
configuration and the shelling out from git to various gpg executables
feels overcomplicated. How about you just embed gpg into the git
executable and let me store my passphrase in a config file.
2022-11-13 12:51:47 -08:00

24 lines
638 B
Text

[user]
email = git@voussoir.net
name = Ethan Dalool
signingkey = 5F7554F8C26DACCB
[alias]
o = log --graph --oneline --decorate --all
on = log --graph --oneline --decorate @{u}~1..HEAD
om = log --graph --oneline --decorate HEAD~1..@{u}
upstream = clone --origin upstream
[init]
defaultBranch = master
[push]
default = simple
[credential "helperselector"]
selected = manager
[diff]
algorithm = histogram
[gui]
diffopts = --patience
# In the user's .gitconfig file, inclue these lines at the top:
# [include]
# path = ~/git/cmd/voussoir.gitconfig
# and put additional configuration below.