Reference: https://help.github.com/articles/generating-ssh-keys/
-
Make sure you have an SSH key for your development machine.
# Confirm that "~/.ssh" exists and you see "id_rsa" and "id_rsa.pub" inside it ls ~/.ssh/ # If .ssh doesn't exist or does not contain id_rsa/id_rsa.pub, then generate them: ssh-keygen -t rsa -C "[email protected]" > Enter file in which to save the key (/Users/you/.ssh/id_rsa): [Press enter] > Enter passphrase (empty for no passphrase): [Type a passphrase] > Enter same passphrase again: [Type passphrase again] # Add generated key to your SSH Agent eval "$(ssh-agent -s)" ssh-add ~/.ssh/id_rsa > [Enter key passphrase to install it]
-
Add dev machine SSH key to your Github account, if you haven't already.
-
Copy your public key to the clipboard:
pbcopy < ~/.ssh/id_rsa.pub
-
Sign into Github from your browser
-
Click "Add SSH Key"
-
Name your key anything you want
-
Paste your public key into the "Key" box
-
Click "Add key"
-
Confirm your key-based Github access
# The following command should trigger the response below ssh -T [email protected] > Hi <github user name>! You've successfully authenticated, but GitHub does not provide shell access.