github how to merge master branch with main 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 master to a branch
git checkout feature1
git merge master