This is a note.
Content: Github commit adding verified badge
I have always been too lazy or too busy to do this, but it seems like this thing doesn't really have any use.
User-side#
Generate GPG key pair#
gpg --gen-key
gpg --list-keys
List GPG key pairs
Export public file#
gpg --armor --output public-key.txt --export E081E7D64************29B7080083
gpg --armor --output private-key.txt --export-secret-keys
Configure local Git#
git config --global user.signingkey E081E7D64************29B7080083
git config --global commit.gpgsign true
Github-side#
cat public-key.txt
Enter the result in Personal settings->SSH and GPG keys
Save
-EOF-