how to pull from git branch code example
Example 1: git pull
git checkout new_feature
git pull <remote repo>
Example 2: how to pull down a specific branch from github
git clone -b <branch> <remote_repo>
git checkout new_feature
git pull <remote repo>
git clone -b <branch> <remote_repo>