Complete the command to merge branch 'feature' into the current branch.
git merge [1]The git merge feature command merges the 'feature' branch into your current branch, creating a merge commit if needed.
Complete the command to create a merge commit even if the merge could be fast-forwarded.
git merge --[1] featureThe --no-ff option forces Git to create a merge commit even if a fast-forward merge is possible.
Fix the error in the command to merge branch 'dev' into current branch with a merge commit.
git merge [1] --no-ffThe branch name 'dev' should come right after git merge. Options like --no-ff come after the branch name.
Fill both blanks to create a merge commit with a custom message 'Merge feature branch'.
git merge [1] -m [2]
The command merges the 'feature' branch and uses -m to add a custom message for the merge commit.
Fill all three blanks to merge 'hotfix' branch with no fast-forward and a custom message 'Hotfix merge'.
git merge [1] [2] -m [3]
This command merges the 'hotfix' branch, forces a merge commit with --no-ff, and adds a custom message.