git push new remote branch code example
Example 1: push a new branch
git push -u origin <branch-name>
Example 2: add remote branch git
git remote add github git://github.com/jdoe/coolapp.git
git fetch github
Example 3: git push branch
git push -u origin <branch>
Example 4: push local branch changes to remote branch
git push -u origin localBranch:remoteBranchToBeCreated