From e839c265f82a4e636fa735bdf850fdcb7bc9ccbb Mon Sep 17 00:00:00 2001 From: Yongmin Hong Date: Sun, 19 May 2024 15:05:42 +0900 Subject: [PATCH] gitconfig: git config --global rerere.enabled true Summary: Ref [pro git](https://git-scm.com/book/en/v2/Distributed-Git-Maintaining-a-Project). Signed-off-by: Yongmin Hong Test Plan: `git rerere` with forced merge conflict? Reviewers: O1 revi & automations, revi Reviewed By: O1 revi & automations, revi Differential Revision: https://issuetracker.revi.xyz/D99 --- default.gitconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/default.gitconfig b/default.gitconfig index ba4e4e7..8485c1b 100644 --- a/default.gitconfig +++ b/default.gitconfig @@ -35,3 +35,5 @@ defaultBranch = master [tag] forceSignAnnotated = true +[rerere] + enabled = true