Complete the command to enable Git's rerere feature globally.
git config --global rerere.[1] trueThe correct setting to enable rerere is rerere.enabled set to true.
Complete the command to manually record a conflict resolution using rerere.
git rerere [1]The git rerere record command records the current conflict resolution for reuse.
Fix the error in this command to show the current rerere status.
git rerere [1]The correct command to display rerere status is git rerere status.
Fill both blanks to create a rerere cache directory and configure Git to use it.
mkdir -p [1] && git config rerere.[2] [1]
The rerere cache directory can be set with rerere.dir. Creating ~/.git_rerere_cache and configuring rerere.dir to it sets the cache location.
Fill all three blanks to create a dictionary comprehension that maps conflicted files to their resolution status using rerere.
conflicts = {file: git rerere [1] for file in [2] if git rerere [3] file}This comprehension maps each conflicted file to its rerere status. Use git rerere status to get status, iterate over conflicted_files, and check with git rerere status file.