how to pull specific remote branch from git code example
Example 1: how a to pull a branch in git
$ git pull origin other-branch
Example 2: how to pull down a specific branch from github
git clone -b <branch> <remote_repo>
$ git pull origin other-branch
git clone -b <branch> <remote_repo>