merge from other branch git code example
Example 1: how to merge git branch to master
git checkout master
git pull origin master
git merge test
git push origin master
Example 2: git merge branch to another branch
git checkout targetBranch
git merge sourceBranch