git what does track remote branch mean code example
Example 1: git local branch track remote
git branch --set-upstream foo upstream/foo
Example 2: 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'