Skip to content

Instantly share code, notes, and snippets.

@haydonryan
Last active February 17, 2018 16:42
Show Gist options
  • Save haydonryan/3c1f83098814e1c47a74c09e5a8185b3 to your computer and use it in GitHub Desktop.
Save haydonryan/3c1f83098814e1c47a74c09e5a8185b3 to your computer and use it in GitHub Desktop.
Setting up Github GPG signing.
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