Skip to content

Instantly share code, notes, and snippets.

@rogerramosme
Last active July 6, 2019 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rogerramosme/e6fffa14f35608a7348aef1c439e438d to your computer and use it in GitHub Desktop.
Save rogerramosme/e6fffa14f35608a7348aef1c439e438d to your computer and use it in GitHub Desktop.

How to configure ssh key for Github

First generate a new key by running:

ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

Enter a file in which to save the key or press Enter to save using defaults

Then add yout ssh key to your ssh-agent

eval $(ssh-agent -s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment