From 5643353c1088163d9c760c9c7084eb01c753ea4c Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Thu, 26 Sep 2024 02:51:06 +0200 Subject: [PATCH] backfill: mark it as experimental This is a highly useful command, and we want it to get some testing "in the wild". However, the patches have not yet been reviewed on the Git mailing list, and are therefore subject to change. By marking the command as experimental, users will be warned to pay attention to those changes. Signed-off-by: Johannes Schindelin --- Documentation/git-backfill.txt | 2 +- builtin/backfill.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/git-backfill.txt b/Documentation/git-backfill.txt index 066ec6b161a22c..2e1f8505209cbb 100644 --- a/Documentation/git-backfill.txt +++ b/Documentation/git-backfill.txt @@ -9,7 +9,7 @@ git-backfill - Download missing objects in a partial clone SYNOPSIS -------- [verse] -'git backfill' [--batch-size=] [--[no-]sparse] +(EXPERIMENTAL) 'git backfill' [--batch-size=] [--[no-]sparse] DESCRIPTION ----------- diff --git a/builtin/backfill.c b/builtin/backfill.c index b893369ac67313..6fab33fccf4f7e 100644 --- a/builtin/backfill.c +++ b/builtin/backfill.c @@ -25,7 +25,7 @@ #include "path-walk.h" static const char * const builtin_backfill_usage[] = { - N_("git backfill [--batch-size=] [--[no-]sparse]"), + N_("(EXPERIMENTAL) git backfill [--batch-size=] [--[no-]sparse]"), NULL };