how to pull updates from git remote code example
Example 1: how to pull from a branch in git
git pull origin other-branch
Example 2: git pull from differemt server
$ git remote add repo_b username@host:path/to/repository.git
$ git pull repo_b master