how to create git branch on remote repository code example
Example: create local and remote branch
git checkout -b yourBranchName
git push -u origin yourBanchName
git checkout -b yourBranchName
git push -u origin yourBanchName