Answers for "how to merge a master to branch or branch to mas"

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
2

merge master into local branch

git checkout feature1
git merge master
Posted by: Guest on June-02-2020

Code answers related to "how to merge a master to branch or branch to mas"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language