Git - Cherry-Pick and Advanced MergingWhich command correctly enables rerere globally in Git?Agit config --global rerere.enabled trueBgit config --global rerere.enable trueCgit rerere enable --globalDgit config rerere.enabled true --globalCheck Answer
Step-by-Step SolutionSolution:Step 1: Recall the correct config syntax for rerereThe correct key is "rerere.enabled" with a dot, not "rerere.enable".Step 2: Confirm the global flag placementThe global flag comes immediately after "config" and before the key-value pair.Final Answer:git config --global rerere.enabled true -> Option AQuick 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.enabledPlacing --global after the key-value pairUsing 'git rerere enable' command which doesn't exist
Master "Cherry-Pick and Advanced Merging" in Git9 interactive learning modes - each teaches the same concept differentlyLearnWhyDeepVisualTryChallengeProjectRecallTime
More Git Quizzes Collaboration Workflows - Feature branch workflow - Quiz 9hard Collaboration Workflows - Handling PR feedback and updates - Quiz 2easy Rebasing - git rebase basic usage - Quiz 2easy Rebasing - Why rebasing creates linear history - Quiz 3easy Rebasing - Reordering commits - Quiz 5medium Rebasing - Interactive rebase (git rebase -i) - Quiz 7medium Rebasing - Why rebasing creates linear history - Quiz 13medium Stashing - git stash apply vs pop - Quiz 10hard Tagging - Creating tags - Quiz 12easy Tagging - Semantic versioning with tags - Quiz 5medium