pull remote into local code example
Example 1: git pull a new branch froma remote repo
git checkout --track origin/daves_branch
Example 2: pull from a brrrnch in git
$ git fetch origin other-branch
git checkout --track origin/daves_branch
$ git fetch origin other-branch