Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 801 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 801 Bytes

gpg key management

If using git signed commits a GPG needs generating and associating to the Git workflows.

Initial Configuration

Key generation

gpg --full-generate-key

Listing Key

GitHub has some great docs on this setup.

# get key id
gpg --list-secret-keys --keyid-format=long

The GPG_TTY setting is needed to enable the prompt for the private key secret passphrase. (reading reference)

export GPG_TTY=$(tty)'

View the Git README.md with regards to associating the created key.