Skip to content

Instantly share code, notes, and snippets.

@franee
Last active November 27, 2024 18:19
Show Gist options
  • Save franee/827e04bdeebe67791efdce5387833587 to your computer and use it in GitHub Desktop.
Save franee/827e04bdeebe67791efdce5387833587 to your computer and use it in GitHub Desktop.
Sign Github commits with SSH key

NOTE: Needs Git 2.34.0 or later

Add SSH as signing key in Github

Screenshot 2024-11-27 at 18 31 27


on local machine

Create an allowed_signers file

touch ~/.ssh/allowed_signers
chmod 600 ~/.ssh/allowed_signers
echo "<your name here> $(cat ~/.ssh/id_rsa.pub)" >> ~/.ssh/allowed_signers

Add to ~/.gitconfig

[user]
  signingkey = ~/.ssh/id_rsa.pub

[gpg]
  program = gpg
  format = ssh
  
[commit]
  gpgsign = true

[gpg "ssh"]
  allowedSignersFile = ~/.ssh/allowed_signers

Test

$ git commit -m "Test SSH signing" --allow-empty

[111222333-some-branch 78737f63f6] Test SSH signing

$ git log --show-signature -1

commit 78737f63f64bfd9f25d79f00fff1a481ed8b8f45 (HEAD -> 111222333-some-branch)
Good "git" signature for <SNIP> with RSA key SHA256:<---SNIP--->
Author: <SNIP> <--SNIP--->
Date:   Wed Nov 27 18:28:59 2024 +0100

    Test SSH signing

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment