Answers for "git merge branch into my branch"

1

merge branch to branch

git checkout master
git merge new-branch
git push
Posted by: Guest on January-04-2021
2

git merge branch into my branch

git checkout b				# b is checked out (b could be master for exampel)
git pull					# update local b
git merge a					# merge branch a into b
git push					# b changes on remote with merged source.
Posted by: Guest on May-18-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language