gpg --full-generate-key
gpg --list-secret-keys --keyid-format LONG
gpg --armor --export 62H62BDC69C7ETRW
brew upgrade gnupg
brew link --overwrite gnupg
brew install pinentry-mac
echo "pinentry-program /usr/local/bin/pinentry-mac" >> ~/.gnupg/gpg-agent.conf
killall gpg-agent
# test
echo "test" | gpg --clearsign
git config --global user.name "Hellen Hunt"
git config --global user.email "[email protected]"
git config --global gpg.program gpg
git config --global commit.gpgsign true
Be on your way!
Thank you Adam, very cool!