Complete the command to start a merge that might cause conflicts.
git [1] feature-branchThe git merge command combines changes from another branch into your current branch, which can cause conflicts if changes overlap.
Complete the command to see files with merge conflicts.
git [1] --name-only --diff-filter=[2]
The git diff --name-only --diff-filter=U command lists files with unresolved conflicts (U = unmerged).
Fix the error in the command to mark a conflicted file as resolved.
git [1] <file>After resolving conflicts in a file, you use git add to mark it as resolved before committing.
Fill both blanks to create a command that aborts a merge and returns to the previous state.
git [1] [2]
git merge --abort stops the merge process and resets the branch to the state before the merge started.
Fill all three blanks to create a command that shows the conflict markers in a file.
git [1] [2] [3]
git diff --check <file> shows conflict markers and whitespace errors in the specified file.