I am on a master branch \'master\' and I have 1 commit ahead I want to create a new remote branch called \'new_remote\' and push my commit there?
$ git branc
If you are currently working on local branch master, and the new remote branch has not been created yet:
git checkout -b new_branch // creates a local branch (as a copy of the current) git push origin new_branch // push it to the remote server