back to notes

create new GitHub repo from git local repository

echo "# github-upload" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin git@github.com:libjohn/github-upload.git
git push -u origin master


last updated january 2019