git pull remote feature branch example
Example 1: git pull a new branch froma remote repo
git checkout --track origin/daves_branch
Example 2: git pull
git checkout new_feature
git pull <remote repo>
git checkout --track origin/daves_branch
git checkout new_feature
git pull <remote repo>