Skip to content

Commit 4900749

Browse files
committed
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 <[email protected]>
1 parent 01dbf18 commit 4900749

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

builtin/pack-objects.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4406,7 +4406,7 @@ int cmd_pack_objects(int argc, const char **argv, const char *prefix)
44064406
N_("protocol"),
44074407
N_("exclude any configured uploadpack.blobpackfileuri with this protocol")),
44084408
OPT_BOOL(0, "full-name-hash", &use_full_name_hash,
4409-
N_("optimize delta compression across identical path names over time")),
4409+
N_("(EXPERIMENTAL!) optimize delta compression across identical path names over time")),
44104410
OPT_END(),
44114411
};
44124412

builtin/repack.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1163,7 +1163,7 @@ int cmd_repack(int argc, const char **argv, const char *prefix)
11631163
OPT_BOOL('F', NULL, &po_args.no_reuse_object,
11641164
N_("pass --no-reuse-object to git-pack-objects")),
11651165
OPT_BOOL(0, "full-name-hash", &po_args.full_name_hash,
1166-
N_("pass --full-name-hash to git-pack-objects")),
1166+
N_("(EXPERIMENTAL!) pass --full-name-hash to git-pack-objects")),
11671167
OPT_NEGBIT('n', NULL, &run_update_server_info,
11681168
N_("do not run git-update-server-info"), 1),
11691169
OPT__QUIET(&po_args.quiet, N_("be quiet")),

0 commit comments

Comments
 (0)