git init
echo FILE
git add FILE
git commit -m "first commit"
git remote add origin https://github.com/mehblahwhatever/GitNotes.git
git push -u origin master
echo NEW_FILE
git add NEW_FILE
git commit -m "second commit"
git push -u origin master
git branch NEW_BRANCH
git checkout NEW_BRANCH
git push -u origin NEW_BRANCH
git checkout master
git merge NEW_BRANCH
git push -u origin master
git clone https://github.com/mehblahwhatever/GitNotes.git