Get Scoop
scoop install gpg
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]
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"
Export public key:
gpg --output public.pgp --armor --export username@email
Export secret key:
gpg --output private.pgp --armor --export-secret-key username@email