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