git pull a remote branch locally and make new branch code example
Example 1: how to pull remote branch into local branch
git fetch origin <branch-name>
Example 2: git pull a new branch froma remote repo
git checkout --track origin/daves_branch
git fetch origin <branch-name>
git checkout --track origin/daves_branch