How to pull a branch from GitHub code example
Example 1: how a to pull a branch in git
$ git pull origin other-branch
Example 2: how to pull from a branch in git
git pull origin other-branch
Example 3: how to pull git repository from github
git clone [email protected]:username/repo.git
Example 4: how to pull down a specific branch from github
git clone -b <branch> <remote_repo>