Generating SSH Keys

This is a handy link to help set up SSH keys for working with github.

https://help.github.com/articles/generating-ssh-keys

Below are some of the commands:

ls -al ~/.ssh
ssh-keygen -t rsa -C "your_email@example.com"
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_rsa
pbcopy < ~/.ssh/id_rsa.pub

After pbcopy, just head over to Github Account Settings to add your SSH key.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s