how to pull changes from one branch to another branch in git code example
Example 1: git pull from another branch
git pull origin <branch-name>
Example 2: git pull on another branch
git fetch origin master:master
Example 3: update one branch to another
git checkout feature1
git merge develop