Last active
April 5, 2017 06:57
-
-
Save ruben-rodriguez/e67a679641c996aabf81c86f291380da to your computer and use it in GitHub Desktop.
GPG & github gpg sign
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
gpg --import private_key.asc | |
gpg --list-secret-keys --keyid-format LONG | |
gpg --delete-secret-key <key> | |
gpg --edit-key <key> | |
passwd | |
git config --global user.signingkey <key> | |
git config --global commit.gpgsign true | |
Edit .bash_profile | |
export GPG_TTY=$(tty) | |
Copy public key https://keybase.io/akiyoshi/key.asc to a new gpg key on github |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment