how to pull changes from a branch to other branch code example
Example 1: git pull on another branch
git fetch origin master:master
Example 2: git pull from another branch
git pull origin <branch-name>
git fetch origin master:master
git pull origin <branch-name>