Git: Create New Repo Locally March 28th, 2015
- Create new repo on GitHub
- 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
git init
git remote add origin git@github.com:USER/REPO.git
git add .
git commit
git push origin