git merge one branch into other code example
Example 1: how to merge a branch into another branch
git checkout YourBranch
git merge develop
Example 2: update one branch to another
git checkout feature1
git merge develop
git checkout YourBranch
git merge develop
git checkout feature1
git merge develop