dotfiles/config/git/gitconfig

19 lines
308 B
Plaintext
Raw Normal View History

2024-09-14 13:01:20 +00:00
[user]
email = "redacted@example.org"
name = "redacted"
signingkey = "redacted"
2024-09-14 13:01:20 +00:00
[commit]
gpgsign = true
[gpg]
program = "/usr/bin/gpg"
2024-09-14 13:01:20 +00:00
[rebase]
autostash = true
autosquash = true
[pull]
rebase = true
autostash = true
[format]
pretty = "oneline"
2024-09-14 13:01:20 +00:00
[alias]
logv = "log --pretty=full --show-signature"