A Little Note on Git
Published on 20 Feb 2020
by Alexander Garber
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
# Call it id_rsa
cat ~/.ssh/id_rsa.pub | xclip -selection clipboard
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
You are now ready to git clone
to your heart’s content.