Skip to content

Instantly share code, notes, and snippets.

@decryp2kanon
Forked from cryptozeny/create_ssh.sh
Created December 11, 2021 04:16
Show Gist options
  • Save decryp2kanon/ff8aea7164fa3c608b41c43a3c42880b to your computer and use it in GitHub Desktop.
Save decryp2kanon/ff8aea7164fa3c608b41c43a3c42880b 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