merge your branch into master 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: merge master with main
git checkout master
git pull origin master
git merge test
git push origin master
Example 3: 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 4: 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