Last active
December 11, 2021 04:16
-
-
Save cryptozeny/d5526b009710b43ec4ad1749449ecc25 to your computer and use it in GitHub Desktop.
create github SSH key
This file contains 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
ssh-keygen -t rsa -b 4096 -C "[email protected]" && \ | |
eval "$(ssh-agent -s)" && \ | |
ssh-add ~/.ssh/id_rsa && \ | |
echo "COPY to github ssh" ;\ | |
echo "*******************" ; \ | |
cat ~/.ssh/id_rsa.pub ; \ | |
echo "*******************" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment