My commits are currently coming in as "Unverified" but they should be set to "Verified".
I've followed the this guide to create my GPG key and when I do gpg --list-secret-keys --keyid-format LONG
I get the following:
sec rsa4096/SOME_KEY 2019-10-24 [SC]
SOME_OTHER_LONGER_KEY
uid [ultimate] Ryan Wood <myemail@address.com>
ssb rsa4096/SOME_OTHER_KEY 2019-10-24 [E]
I did gpg --armor --export SOME_KEY
to produce the public key and put it on GitHub as per the instructions here. Furthermore, I set git config --global commit.gpgsign true
as per this guide and was prompted for my passphrase on my last commit, which I entered correctly. I also verified that the email I provided to GPG and the email I have listed on GitHub are the same. Finally, I set my signing key in git according to the answer provided in this question by doing git config --global user.signingkey SOME_KEY
. However, my commit is unverified.
Is there anything else I need to do here or does the process require a certain amount of time before the commits show as verified?