Last active
February 17, 2018 16:42
-
-
Save haydonryan/3c1f83098814e1c47a74c09e5a8185b3 to your computer and use it in GitHub Desktop.
Setting up Github GPG signing.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
brew doctor | |
brew update | |
brew install -v gpg | |
gpg --full-generate-key | |
gpg --list-secret-keys --keyid-format LONG | |
# https://help.github.com/articles/generating-a-new-gpg-key/ | |
git config commit.gpgsign true # do this per repo | |
git config --global user.signingkey <<key ID >> | |
NOTE: you must have signed using the same email address as set by git config --global user.email otherwise github will show unverified on the commit | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment