Last active
March 29, 2021 07:00
-
-
Save kenzo0107/6c03a9b7439c0ecd2a55fb156059193f to your computer and use it in GitHub Desktop.
import export gpg keys
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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