I currently have the following ~/.gitconfig:
[gpg]
program = /usr/local/bin/krgpg
[commit]
gpgSign = true
[tag]
forceSignAnnotated = true
A commit requires me to sign using PGP:
git commit -m "Add package.json"
Krypton ▶ Requesting git commit signature from phone
However, I want to only sign my tags, and skip signing commits.
Question: Is there any way for me configure git to sign just my tags
I mean, short of aliasing:
$ git alias.tag 'tag -s'