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