how to change to a remote branch git code example
Example 1: git get remote branches
git branch -r
Example 2: checkout remote branch
git fetch origin
git checkout –track origin/xyz
git branch -r
git fetch origin
git checkout –track origin/xyz