Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GordonBeeming/6c88482ecd632ba04d68d9e15590b4a2 to your computer and use it in GitHub Desktop.
Save GordonBeeming/6c88482ecd632ba04d68d9e15590b4a2 to your computer and use it in GitHub Desktop.
Commands used in the YouTube video Setting up commit signature verification for GitHub https://www.youtube.com/watch?v=9qyjtB9YUJ8
gpg --full-generate-key
gpg --list-secret-keys --keyid-format long
gpg --armor --export xxxxxxxxxxxx
git config --list
git config --global commit.gpgsign true
git config --global user.signingKey xxxxxxxxxxx
git config --global gpg.program "C:\Program Files\Git\usr\bin\gpg.exe"
# Global User
git config --global user.name "Gordon Beeming"
git config --global user.email "gordon@devstarops.com"
#Local Repo User
git config user.name "Gordon Beeming"
git config user.email "gordon@devstarops.com"
git config user.signingKey xxxxxxxxxxx
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment