create remote branch github code example
Example 1: create local and remote branch
git checkout -b yourBranchName
git push -u origin yourBanchName
Example 2: git link local branch to remote branch
git config remote.origin.fetch '+refs/heads/*:refs/remotes/origin/*'