Complete the command to merge branch 'feature' into the current branch using the default merge strategy.
git merge [1]The command git merge feature merges the 'feature' branch into the current branch using the default merge strategy.
Complete the command to merge branch 'feature' using the 'ours' merge strategy.
git merge -s [1] featureThe 'ours' merge strategy keeps the current branch's changes and ignores the other branch's changes during the merge.
Fix the error in the command to merge branch 'feature' using rebase instead of merge.
git [1] featureTo apply changes from 'feature' branch on top of the current branch, use git rebase feature.
Fill both blanks to create a merge commit with a custom message and no fast-forward.
git merge --no-[1] -m [2] feature
The --no-ff option forces a merge commit even if fast-forward is possible. The -m option sets a custom message.
Fill all three blanks to create a squash merge with a custom message and no commit.
git merge --squash --no-[1] --[2] -m [3] feature
The --no-ff disables fast-forward, --no-commit prevents automatic commit, and -m sets the commit message for the squash merge.