how to merge with master branch github 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: 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 3: merge branch into master
$ git add –A
$ git commit –m "Some commit message"
$ git checkout master
Switched to branch 'master'
$ git merge new-branch