Answers for "how to pull master changes in a branch"

1

what command do you use to pull any changes from the master repository into your local repository?

git fetch <remote> <branch>
Posted by: Guest on September-07-2021
2

git pull master for feature 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 pull master changes in a branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language