Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save xirixiz/6f423226ab3cb50877cdb7c30d40b046 to your computer and use it in GitHub Desktop.
Save xirixiz/6f423226ab3cb50877cdb7c30d40b046 to your computer and use it in GitHub Desktop.
import export gpg keys
# export private keys
gpg --export-secret-keys --armor > gpg-private.keys
# import private keys
gpg --import gpg-private.keys
# export public keys
gpg --export --armor > gpg-public.keys
# import public keys
gpg --import gpg-public.keys
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment