how to merge with 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

# ...develop some code...

$ git add –A
$ git commit –m "Some commit message"
$ git checkout master
$ git merge new-branch

Example 4: merge master into branch

git checkout master
git pull
git checkout test
git merge master
git push