Sign GitHub Commit on Windows
A guide to sign GitHub commit on Windows
What’s needed
Git for Windows already shipped with gpg. You only need to add C:\Program Files\Git\usr\bin\ to PATH.
How-to
- generate gpg key:
gpg --full-generate-key - show generated key:
gpg --list-secret-keys --keyid-format=long
Output:[keyboxd]---------sec ed25519/C50213C2685D0XXX 2025-04-30 [SC] [expires: 2030-04-29] 9D01A4041614F5DF7C9A1EC9C50213C2685D0XXXuid [ultimate] Your Name <you@mail.com>ssb cv25519/B962022817E5DXXX 2025-04-30 [E] [expires: 2030-04-29]- export the key to register it to Github account:
gpg --armor --export C50213C2685D0XXX - copy the output and add it to Github GPG key in the setting page
- tell git to sign all commits and tags
git config --global user.signingkey C50213C2685D0XXXgit config --global tag.gpgSign truegit config --global commit.gpgsign truegit config --global gpg.program "C:\\Program Files\\Git\\usr\\bin\\gpg.exe"Important
don’t forget to set gpg.program to configure gpg executable in global git config just in case you already have another gpg installed somewhere else.