Skip to content

Instantly share code, notes, and snippets.

@Nicktho
Created August 7, 2016 09:30
Show Gist options
  • Save Nicktho/9ad1e1af5164e2f30925ddc2a42b06b6 to your computer and use it in GitHub Desktop.
Save Nicktho/9ad1e1af5164e2f30925ddc2a42b06b6 to your computer and use it in GitHub Desktop.

GitHub (10 min)

We will be using the GitHub service to share some of our code. We will learn about the underlying technology of GitHub known as git in the next lesson.

  • Create an account at http://github.com

  • In a Terminal on your computer, run the following two commands:

    git config --global user.name "YOUR NAME"
    git config --global user.email "YOUR EMAIL ADDRESS"

    (source: GitHub)

  • Follow these instructions to create a new SSH Key (a special, very secure, key which allows your laptop access to your github account without having to remember your github password)

  • Add your new SSH Key to GitHub following these instructions

  • Verify your key works by running the following:

    You should see output similar to:

    Hi <you>! You've successfully authenticated, but GitHub does not provide shell access.
    Connection to github.com closed.
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment