how to pull from a particular remote branch code example
Example 1: how to pull from a particular branch in git
git pull origin <branch>
Example 2: how to pull remote branch into local branch
git fetch origin <branch-name>
git pull origin <branch>
git fetch origin <branch-name>