how to pull a remote branch into local branch code example
Example 1: how to pull remote branch into local branch
git fetch origin <branch-name>
Example 2: how to pull a new remote branch
git fetch <remote> <rbranch>:<lbranch>
git checkout <lbranch>
Example 3: git pull new branch from remote
git fetch origin
git switch daves_branch