Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 653 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 653 Bytes

Twisted Turns Submissions

NOTE:

  • Replace <username> with your github username below
  • Replace <email> with your github email below
  • Replace <yourname> with your name below
  • Replace angle brackets too

IF YOU ARE FIRST TIMER

git config --global user.email "<email>"
git config --global user.name "<yourname>"

HOW TO SUBMIT YOUR CODE

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>