Answers for "how to merge master with main github"

3

merge master with main

git checkout master
git pull origin master
git merge test
git push origin master
Posted by: Guest on February-07-2021
0

Merge master branch to main branch - Github

git checkout main
git merge master
git push origin main
Posted by: Guest on May-13-2022

Code answers related to "how to merge master with main github"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language