create new branch origin code example
Example 1: create new branch from origin
git checkout -b nameOfBranch origin/nameOfBranch
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