how to create a new branch and push to remote code example
Example 1: git push to branch
git push -u origin BRANCH
git push origin BRANCH
Example 2: github Push local branch to Remote
git push origin <Branch_Name>
Example 3: git link local branch to remote branch
git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'
Example 4: git push in a new branch
git checkout -b <branch>
git add .
git commit -m "comment"
git push -u origin <branch>
Example 5: push local branch changes to remote branch
git push -u origin localBranch:remoteBranchToBeCreated