how to track remote branch git --track code example
Example 1: git local branch track remote
git branch --set-upstream foo upstream/foo
Example 2: git local branch track remote
git branch -u upstream/foo foo
git branch --set-upstream foo upstream/foo
git branch -u upstream/foo foo