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.
$ git commit -S -m "your commit message"
# Creates a signed commitgit config --global user.signingkey ABC123git config --global commit.gpgsign trueGIT_TRACE=1 git commit -S -m "your commit message"Last updated