Answers for "pull master into branch"

8

git pull master into branch

git checkout <branch-name>  # gets you on <branch-name>
git fetch origin        	# gets you up to date with origin
git merge origin/master		# pull master into <branch-name>
Posted by: Guest on July-23-2020
2

pull 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 "Shell/Bash"

Browse Popular Code Answers by Language