Skip to content

Instantly share code, notes, and snippets.

@dogukancagatay
Created July 30, 2024 08:06
Show Gist options
  • Save dogukancagatay/06f003d41b078d7552c5fa71adc1cad3 to your computer and use it in GitHub Desktop.
Save dogukancagatay/06f003d41b078d7552c5fa71adc1cad3 to your computer and use it in GitHub Desktop.
Export and import GPG keys

List your secret keys, and decide which one to export.

gpg --list-secret-keys --keyid-format LONG

Export the secret and public parts of the key.

gpg --export --armor <key-id> > gpg-pub.asc
gpg --export-secret-keys --armor <key-id> > gpg-sc.asc

Import the parts.

gpg --import gpg-pub.asc
gpg --import gpg-sc.asc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment