git create a remote branch and track it code example
Example 1: create local branch to track remote
git checkout --track origin/some_remote_branch
Example 2: create new remote branch
git checkout -b <new-branch-name> #Create new branch locally
git push <remote-name> <new-branch-name> #Create new branch remotely