track a remote branch locally code example
Example 1: git track remote branch
$ git checkout --track origin/dev
Branch dev set up to track remote branch dev from origin.
Switched to a new branch 'dev'
Example 2: git local branch track remote
git branch -u upstream/foo foo