how to pull work from remote repository git code example
Example 1: git pull a new branch froma remote repo
git checkout --track origin/daves_branch
Example 2: git pull from differemt server
$ git remote add repo_b username@host:path/to/repository.git
$ git pull repo_b master