git pull local branch into other branch code example
Example 1: git pull on another branch
git fetch origin master:master
Example 2: how to pull from a branch in git
git pull origin other-branch
git fetch origin master:master
git pull origin other-branch