cant pull new branch git code example
Example 1: git pull on another branch
git fetch origin master:master
Example 2: how to pull a new remote branch
git fetch <remote> <rbranch>:<lbranch>
git checkout <lbranch>
git fetch origin master:master
git fetch <remote> <rbranch>:<lbranch>
git checkout <lbranch>