pull code from remote branch code example
Example 1: git pull on another branch
git fetch origin master:master
Example 2: git pull a new branch froma remote repo
git checkout --track origin/daves_branch
git fetch origin master:master
git checkout --track origin/daves_branch