how to see distant branch code example
Example 1: git list remote branches
git branch -r
Example 2: git checkout branch from remote to local
git checkout -b test origin/test
// making a local copy of the branch called "test" from origin.
git branch -r
git checkout -b test origin/test
// making a local copy of the branch called "test" from origin.