Getting set up - snowpuppy/augreality GitHub Wiki
git config --global user.name "Your Name Here" git config --global user.email "[email protected]"
cd ~/.ssh ssh-keygen -t rsa -C "[email protected]"
Generating public/private rsa key pair. # Enter file in which to save the key (/home/you/.ssh/id_rsa):
Now you need to enter a passphrase.
# Enter passphrase (empty for no passphrase): [Type a passphrase] # Enter same passphrase again: [Type passphrase again]
Which should give you something like this:
# Your identification has been saved in /home/you/.ssh/id_rsa. # Your public key has been saved in /home/you/.ssh/id_rsa.pub. # The key fingerprint is: # 01:0f:f4:3b:ca:85:d6:17:a1:7d:f0:68:9d:f0:a2:db [email protected]
To add your ssh key to github, follow step 3 here: generating-ssh-keys
Type this to test your key:
ssh -T [email protected]
Instructions pulled from github help page and abbreviated.
git clone [email protected]:snowpuppy/augreality.git
See Development Setup for the latest details.