get the git remote branch on local code example
Example 1: git checkout remote branch
git checkout --track origin/<branchname>
Example 2: how to track a branch on github
$ git checkout --track origin/serverfix
Branch serverfix set up to track remote branch serverfix from origin.
Switched to a new branch 'serverfix'