github how to push to a pull request code example
Example: github repository pull commit push
My Github Guide
===============
$ git commit -am "My commit message here"
$ git pull origin master
$ git stash
Branches
========
$ git branch
$ git branch MyNewBranch
$ git checkout MyNewBranch
$ git checkout COMMIT_HASH
(Example: git checkout a0e3d36ae57a06ac31c70ed7008c58c044e13364)
git merge MyNewBranch (Like commit to MyNewBranch)
git push
More git commands
=================
$ git log
$ git log --oneline