From: Elijah Newren Date: Fri, 20 Feb 2026 01:59:48 +0000 (+0000) Subject: replay: prevent the_repository from coming back X-Git-Tag: v2.54.0-rc0~115^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3249d07962f081bd84bace9ca7f808575e2cae56;p=thirdparty%2Fgit.git replay: prevent the_repository from coming back Due to the use of DEFAULT_ABBREV, we cannot get rid of our usage of USE_THE_REPOSITORY_VARIABLE. We have removed all other uses of the_repository before, but without removing that definition, they keep coming back. Define the_repository to make it a compilation error so that they don't come back any more; the repo parameter plumbed through the various functions can be used instead. Signed-off-by: Elijah Newren Signed-off-by: Junio C Hamano --- diff --git a/replay.c b/replay.c index f97d652f33..a63f6714c4 100644 --- a/replay.c +++ b/replay.c @@ -11,6 +11,12 @@ #include "strmap.h" #include "tree.h" +/* + * We technically need USE_THE_REPOSITORY_VARIABLE for DEFAULT_ABBREV, but + * do not want to use the_repository. + */ +#define the_repository DO_NOT_USE_THE_REPOSITORY + static const char *short_commit_name(struct repository *repo, struct commit *commit) {