Answers for "git how to merge two branches"

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
0

Merge Two Branches in git command

git merge existing_branch_name
git merge --no-ff existing_branch_name
Posted by: Guest on June-10-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language