- Use git bash to generate ssh key
ssh-keygen -t rsa -C "your_email@example.com"
You need to set a password to avoid issues. When you are setting your key password, nothing will show in the terminal when you enter your password, this is normal, don't panic!
- Print out the pub key
cat ~/.ssh/id_rsa.pub - Copy that key and add it to https://github.com/settings/keys (New SSH key)
- Test to make sure everything is peachy
ssh -T git@github.com