sign commit with pgp
We can sign our commit with PGP to get verification that it was committed by us. On github we would also get a green "Verified" check mark in our commit.
Make sure you setup A PGP key on your local machine. See this article to set it up
Make sure you have a key that matched the email that you used for the commit. (eg: username@users.github.com
add -S
flag when you want to sign the commit
or add enable it by default
Tell git which key to use
If you are having issue, GIT_TRACE=1
with your git comment
Last updated