Answers for "merge the master into branch"

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

git merge master to branch

git checkout <branchname>
git merge master -m 'your message here'
git push origin <branchname>
Posted by: Guest on March-12-2022

Code answers related to "merge the master into branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language