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