Git: Create New Repo Locally March 28th, 2015

  1. Create new repo on GitHub
  2. Create folders and files locally and use Terminal to push repo up…
                    git init
                    git remote add origin git@github.com:USER/REPO.git
                    git add .
                    git commit
                    git push origin