git new branch track remote branch code example
Example 1: create local branch to track remote
git checkout --track origin/some_remote_branch
Example 2: git local branch track remote
git branch -u upstream/foo foo
git checkout --track origin/some_remote_branch
git branch -u upstream/foo foo