Skip to content

Latest commit

 

History

History
44 lines (36 loc) · 946 Bytes

README.md

File metadata and controls

44 lines (36 loc) · 946 Bytes

GPG configuring steps using Scoop

Get Scoop

scoop install gpg

Configuring GPG signing

GitHub steps for generating GPG key

Commands used

gpg --full-generate-key
gpg --list-secret-keys --keyid-format=long
gpg --armor --export [GPG key ID]

Configuring local Git

git config --global user.signingkey [GPG key ID]
git config --global commit.gpgsign true
git config --global gpg.program "C:\Users\currentUser\scoop\apps\gpg\current\bin\gpg.exe"

Exporting key(s) as file

Export public key:

gpg --output public.pgp --armor --export username@email

Export secret key:

gpg --output private.pgp --armor --export-secret-key username@email