git merge branch to origin code example
Example 1: git merge origin/master into branch
git checkout dmgr2 # gets you "on branch dmgr2"
git fetch origin # gets you up to date with origin
git merge origin/master
Example 2: git merge branch to another branch
git checkout targetBranch
git merge sourceBranch