git publish branch on github command line code example
Example 1: push a new branch
git push -u origin <branch-name>
Example 2: git remote push
git push <REMOTENAME> <BRANCHNAME>
git push -u origin <branch-name>
git push <REMOTENAME> <BRANCHNAME>