From d3c8e10135aa8ff137b7489b1f565345945ab9dc Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Tue, 24 Sep 2024 10:06:25 +0200 Subject: [PATCH] repack/pack-objects: mark `--full-name-hash` as experimental This option is still under discussion on the Git mailing list. We still would like to have some real-world data, and the best way to get it is to get a Git for Windows release into users' hands so that they can test it. Nevertheless, without the official blessing of the Git maintainer, this optionis experimental, and we need to be clear about that. Signed-off-by: Johannes Schindelin --- builtin/pack-objects.c | 2 +- builtin/repack.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin/pack-objects.c b/builtin/pack-objects.c index d21fc28d085225..9ae6be6709ee6b 100644 --- a/builtin/pack-objects.c +++ b/builtin/pack-objects.c @@ -4444,7 +4444,7 @@ int cmd_pack_objects(int argc, N_("protocol"), N_("exclude any configured uploadpack.blobpackfileuri with this protocol")), OPT_BOOL(0, "full-name-hash", &use_full_name_hash, - N_("optimize delta compression across identical path names over time")), + N_("(EXPERIMENTAL!) optimize delta compression across identical path names over time")), OPT_END(), }; diff --git a/builtin/repack.c b/builtin/repack.c index bc42608d6a6cf7..bc82e2b8571fb0 100644 --- a/builtin/repack.c +++ b/builtin/repack.c @@ -1211,7 +1211,7 @@ int cmd_repack(int argc, OPT_BOOL('F', NULL, &po_args.no_reuse_object, N_("pass --no-reuse-object to git-pack-objects")), OPT_BOOL(0, "full-name-hash", &po_args.full_name_hash, - N_("pass --full-name-hash to git-pack-objects")), + N_("(EXPERIMENTAL!) pass --full-name-hash to git-pack-objects")), OPT_NEGBIT('n', NULL, &run_update_server_info, N_("do not run git-update-server-info"), 1), OPT__QUIET(&po_args.quiet, N_("be quiet")),