git pull explanation 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
git pull origin other-branch
$ git remote add repo_b username@host:path/to/repository.git
$ git pull repo_b master