Skip to content

Instantly share code, notes, and snippets.

@may
may / thisneedsbetterdocumentation.txt
Last active December 15, 2022 17:23
How to verify your commits with GitHub using SSH
git config --global user.email "Your Email Used On GitHub.com"
git config --global commit.gpgsign true
git config --global gpg.format ssh
If you already have a high-complexity SSH key, skip this.
ssh-keygen -t ed25519 -C "optional comment"
cat .ssh/id_ed25519.pub
git config --global user.signingkey /home/USER/.ssh/id_ed25519.pub