Skip to content

Instantly share code, notes, and snippets.

@mike-pete
Last active January 9, 2022 21:43
Show Gist options
  • Save mike-pete/5326a213d074fe02c6ba9a3bc45c2332 to your computer and use it in GitHub Desktop.
Save mike-pete/5326a213d074fe02c6ba9a3bc45c2332 to your computer and use it in GitHub Desktop.
Get ready to code
  1. 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!

  1. Print out the pub key cat ~/.ssh/id_rsa.pub
  2. Copy that key and add it to https://github.com/settings/keys (New SSH key)
  3. Test to make sure everything is peachy ssh -T git@github.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment