Answers for "how to merge 2 branches in git"

0

git combine two branches into third

git checkout -b branchAB merge-base
git merge branchA
git merge branchB
git rebase --onto merge-base merge-base branchAB
Posted by: Guest on May-25-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language