pull remote branch to local git code example
Example 1: git fetch remote branch
git checkout --track origin/branch_name
Example 2: how to pull a new remote branch
git fetch <remote> <rbranch>:<lbranch>
git checkout <lbranch>
git checkout --track origin/branch_name
git fetch <remote> <rbranch>:<lbranch>
git checkout <lbranch>