Created
August 4, 2013 03:43
-
-
Save tlevine/6149026 to your computer and use it in GitHub Desktop.
Set up an SSH key so you can clone a Git repository from GitHub and not type your password every time you need to fetch or push.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create an SSH key. | |
ssh-keygen | |
# Copy this to the GitHub SSH key page. | |
cat ~/.ssh/id_rsa.pub | |
# Clone a git repository with SSH. | |
git clone [email protected]:tlevine/foobar.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@gskielian, take a look at this.