From 69b97e461a17edd52a71e062249bf18d0081c96d Mon Sep 17 00:00:00 2001 From: Al Bowles Date: Thu, 3 Nov 2022 12:18:32 -0500 Subject: [PATCH] Added section on publishing your key to a keyserver --- dev_guides/commit_signing.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dev_guides/commit_signing.md b/dev_guides/commit_signing.md index 4850280..321afa0 100644 --- a/dev_guides/commit_signing.md +++ b/dev_guides/commit_signing.md @@ -92,6 +92,14 @@ Find the *primary keypair* and import it (preferably into an ephemeral system li # User or workspace setting "git.enableCommitSigning": true +# Upload your public key to a keyserver + + gpg --keyserver pgp.mit.edu --send-keys 0xDEADB33FBAD1D3A + +# Verify your key has been published + + gpg --keyserver pgp.mit.edu --search-key my@email.addr + # References [OpenPGP Best Practices](https://riseup.net/en/security/message-security/openpgp/best-practices#key-configuration)
[Github: Signing Commits](https://docs.github.com/en/enterprise-server@3.5/authentication/managing-commit-signature-verification/signing-commits)