how to track a remote branch on git code example
Example 1: how to see remote branch git
git remote show origin
Example 2: create local branch to track remote
git checkout --track origin/some_remote_branch
git remote show origin
git checkout --track origin/some_remote_branch