Bird
0
0

Which command correctly enables rerere globally in Git?

easy📝 Configuration Q12 of 15
Git - Cherry-Pick and Advanced Merging
Which command correctly enables rerere globally in Git?
Agit config --global rerere.enabled true
Bgit config --global rerere.enable true
Cgit rerere enable --global
Dgit config rerere.enabled true --global
Step-by-Step Solution
Solution:
  1. Step 1: Recall the correct config syntax for rerere

    The correct key is "rerere.enabled" with a dot, not "rerere.enable".
  2. Step 2: Confirm the global flag placement

    The global flag comes immediately after "config" and before the key-value pair.
  3. Final Answer:

    git config --global rerere.enabled true -> Option A
  4. Quick Check:

    Correct syntax uses rerere.enabled with --global [OK]
Quick Trick: Use 'rerere.enabled' with --global to enable rerere [OK]
Common Mistakes:
  • Using rerere.enable instead of rerere.enabled
  • Placing --global after the key-value pair
  • Using 'git rerere enable' command which doesn't exist

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Git Quizzes