Signing commits is useful for verifying that the commit is actually made by the source it says. Anyone can commit and give it any name and email address. Verification is a way to tell the difference between commits made by someone pretending to be us and commits weβve actually made.
- Copy the contents of your public key (the one already in GitHub - I use
./ssh/id_rsa.pub
) - Create a new file:
~/.git-signing
- On the first line, add the email you use in your commits that matches your GitHub profile, hit space and paste the content of your public key
The contents of the file (.git-signing
), should now look like something like this:
[email protected] ssh-rsa AAZZZZZZZZzaC1yc2XXDDDZZZABAAACAQDH7TL1soc9E5mkZVDj9... ... ... ... .. PunvTGXBzzL1hKZsmxRRQ== Me Me Me@Me
The email does not have to match the one you might have at the end of your key file; that is just a comment, if you remember from when generating it, you used a -C
flag.
Update your gitconfig
with the following (git config --global --edit
):
[user]
..
name = Me Me Me
email = [email protected]
signingkey = ~/.ssh/id_rsa.pub
..
[gpg]
format = ssh
[gpg "ssh"]
allowedsignersfile = ~/.git-signing
[commit]
..
gpgsign = true
..
- Signingkey points to your public key
- The GPG format is set to SSH. Since we have a SSH key and not a GPG key
- We tell GPG about the allowedsigners file that we just made so that git can match it to the signingkey
- Lastly, we tell git to always sign our commits. This can be omitted, but then we would have to add
-S
to every commit we want to sign. We can also do the same for tags.
We can verify that signing works by making a commit and running:
git log --show-signature
We should then get:
commit b4836c2d8cdflipflop99dac249693f73607e (HEAD -> my-sick-branch)
Good "git" signature for [email protected] with RSA key SHA256:qC4F+1GuxcuAdZjcPflipflop2nLA02x4iHef5KEsDCyQ
Author: Me Me Me <[email protected]>
Date: Fri May 01 13:00:33 2000 +0200
Update readme
With that, we have local signing, and we need to add our public key to GitHub to get the verified badge on our commits there as well.
- Navigate to profile > settings > SSH and GPG keys
- Add a new SSH key
- Give it a fitting name, select Signing Key, and use the public key from earlier
- Save it!
Push the change, and look for the green badge on your commits!
You're done!