git new branch from remote code example
Example 1: create local and remote branch
git checkout -b yourBranchName
git push -u origin yourBanchName
Example 2: git checkout remote branch
git checkout --track origin/<branchname>
Example 3: checkout remote branch
git fetch origin
git checkout –track origin/xyz
Example 4: 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