Signing git commits
Color me inspired by Kelsey Hightower’s talk at the Craft Conference this year, I’ve decided to do that basic thing and start signing my commits. There were some helpful articles out in the etherverse for how to do that, but they didn’t work for me, so I’m sharing what did.
I wanted to use my SSH key to sign my commits. I only commit code from a few places, and I already use SSH for github access, so this seemed the least invasive approach to attempt. That said, I use specific keys for github, and generally don’t use the ssh-agent, which means a few things functioned a little differently than most of the walkthroughs showed.
The key for me was in the git docs, specifically:
user.signingKey
If git-tag[1] or git-commit[1] is not selecting the key you want it to automatically when creating a signed tag or commit, you can override the default selection with this variable. This option is passed unchanged to gpg’s –local-user parameter, so you may specify a key using any method that gpg supports. If
gpg.format
is set tossh
this can contain the path to either your private ssh key or the public key when ssh-agent is used. Alternatively it can contain a public key prefixed withkey::
directly (e.g.: “key::ssh-rsa XXXXXX identifier”). The private key needs to be available via ssh-agent. If not set git will call gpg.ssh.defaultKeyCommand (e.g.: “ssh-add -L”) and try to use the first key available. For backward compatibility, a raw key which begins with “ssh-”, such as “ssh-rsa XXXXXX identifier”, is treated as “key::ssh-rsa XXXXXX identifier”, but this form is deprecated; use thekey::
form instead.https://git-scm.com/docs/git-config#Documentation/git-config.txt-usersigningKey
This was my “ah-ha” moment.
The usual ssh instructions didn’t work because they were relying on using a key known to the ssh-agent.
I set the path to the private key as the user.signingkey
value, and the rest fell into place.
1> git config --global commit.gpgsign true
2> git config --global gpg.format ssh
3> git config --global gpg.ssh.allowedSignersFile ~/.ssh/allowed_signers
4> git config --global user.signingkey ~/.ssh/github_rsa
The inspiration to try this:
References: