git merge from master to a branch code example
Example 1: git merge origin/master into branch
git checkout dmgr2
git fetch origin
git merge origin/master
Example 2: merge branch to master
$ git checkout master
$ git branch new-branch
$ git checkout new-branch
$ git add –A
$ git commit –m "Some commit message"
$ git checkout master
$ git merge new-branch
Example 3: how to merge a branch to master in git
git checkout development
...
git push origin development
git checkout production
git merge development
git push origin production
git checkout development
Example 4: merge branch into master
$ git add –A
$ git commit –m "Some commit message"
$ git checkout master
Switched to branch 'master'
$ git merge new-branch