how to update one branch from another in git code example
Example 1: update one branch to another
git checkout feature1
git merge develop
Example 2: move update from one branch to another git
git stash pop
git checkout feature1
git merge develop
git stash pop