dotfiles/config/git/gitconfig

19 lines
308 B
Plaintext

[user]
email = "redacted@example.org"
name = "redacted"
signingkey = "redacted"
[commit]
gpgsign = true
[gpg]
program = "/usr/bin/gpg"
[rebase]
autostash = true
autosquash = true
[pull]
rebase = true
autostash = true
[format]
pretty = "oneline"
[alias]
logv = "log --pretty=full --show-signature"