Raman Gupta <rocketraman@xxxxxxxxx> writes: > From 41116889f7eb2ddd590d165d9ca89646f7b15aaf Mon Sep 17 00:00:00 2001 > From: Raman Gupta <rocketraman@xxxxxxxxx> > Date: Tue, 25 Jul 2017 10:28:35 -0400 > Subject: [PATCH] contrib: rerere-train overwrites existing resolutions These do not belong to the body of the message. Imagine that your title line appears in "git shortlog --no-merges" output together with 600 other commits, and you see that list 3 months later. Can you tell what this change was about? To me, it sounds like a user is complaining that it overwrites and loses a precious one, implying that the change is to fix it by being more careful, i.e. checking if there is an existing one and avoid overwriting it. As our convention is to write the log message as if you are giving an order to the codebase "to behave like so", contrib/rerere-train: overwrite existing resolutions would convey what you are doing better, I would think. As to the change itself, I do anticipate that a user who is used to rerere-train will complain that the updated one overwrites existing resolutions, losing data, as the existing one didn't, and they are used to the way to correct an incorrect resolution that is recorded earlier, which is: * perform the botched merge again, which will materialize the botched merge result in the working tree; * do "git rerere forget" for the path; * correct the path with the right merge result; and then finally * do "git rerere". If this new behaviour is triggered only when a command line option is given (e.g. "--overwrite" which is better than "--force"), I would imagine that it might give us an easier way to achieve the same thing without learning about "rerere forget". So I do not fundamentally oppose to having such an option, but changing the default behaviour is not going to fly. > When running rerere-train, the user is explicitly asking the training to > occur based on the current merge commit. However, if the current cache > has a resolution for the same conflict (even if out of date or wrong), > rerere-train does not currently update the rr-cache. Now, forget > existing resolutions before training so that training is always > reflective of the trained data. > --- Actually, the user is asking to record what is not recorded yet, which is the originally intended use case. You may fetch my 'pu' branch into a repository you already have a copy of git.git, and want to grab conflict resolutions I did between master..pu that you still do not know about. The tool is conservative and avoids clobbering your resolution if you already have resolved some of the merges yourself. In any case, please make it a habit to sign-off your work when posting here. > contrib/rerere-train.sh | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/contrib/rerere-train.sh b/contrib/rerere-train.sh > index 52ad9e4..a222d38 100755 > --- a/contrib/rerere-train.sh > +++ b/contrib/rerere-train.sh > @@ -34,6 +34,7 @@ do > # Cleanly merges > continue > fi > + git rerere forget . > if test -s "$GIT_DIR/MERGE_RR" > then > git show -s --pretty=format:"Learning from %h %s" "$commit"