Answers for "git merge branch a to branch b"

6

how to merge a branch into another branch

git checkout YourBranch
git merge develop
Posted by: Guest on October-07-2020
7

merge two branches git

# merge two branches
1] you should be on MainBranch -- git checkout MainBranch
2] then run merge command -- git merge SubBranch
Posted by: Guest on September-03-2020
2

git merge branch a to branch b

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