- Replace <username> with your github username below
- Replace <email> with your github email below
- Replace <yourname> with your name below
- Replace angle brackets too
git config --global user.email "<email>"
git config --global user.name "<yourname>"
cd into your working directory
git init
git remote add origin https://github.com/<username>/twisted-turns
git remote -v
git pull origin master
git checkout -b <username>
git add .
git commit -am "My Submission"
git push -u origin <username>