git push new branch remote branch code example
Example 1: git new branch push to remote
git push -u origin <branch>
Example 2: how to pull a new remote branch
git fetch <remote> <rbranch>:<lbranch>
git checkout <lbranch>
git push -u origin <branch>
git fetch <remote> <rbranch>:<lbranch>
git checkout <lbranch>