Answers for "how to merge your local feature branch with origin master branch"

2

git merge origin/master into branch

git checkout dmgr2      # gets you "on branch dmgr2"
git fetch origin        # gets you up to date with origin
git merge origin/master
Posted by: Guest on July-30-2020

Code answers related to "how to merge your local feature branch with origin master branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language