Skip to content

Instantly share code, notes, and snippets.

@cryptozeny
Last active December 11, 2021 04:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cryptozeny/d5526b009710b43ec4ad1749449ecc25 to your computer and use it in GitHub Desktop.
Save cryptozeny/d5526b009710b43ec4ad1749449ecc25 to your computer and use it in GitHub Desktop.
create github SSH key
ssh-keygen -t rsa -b 4096 -C "cryptozeny@gmail.com" && \
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