From: Junio C Hamano Date: Thu, 30 Jul 2026 17:44:36 +0000 (-0700) Subject: Merge branch 'tb/send-pack-no-ref-delta' into seen X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c433fc2e8f223c37cc5b6364656eb0124ef44e45;p=thirdparty%2Fgit.git Merge branch 'tb/send-pack-no-ref-delta' into seen 'git send-pack' has been taught to refrain from sending 'REF_DELTA' encoded packfiles when the other side asks it to. * tb/send-pack-no-ref-delta: send-pack: honor `no-ref-delta` capability pack-objects: support reuse with `--no-ref-delta` pack-objects: introduce `--no-ref-delta` t/helper: teach pack-deltas to list delta entries --- c433fc2e8f223c37cc5b6364656eb0124ef44e45 diff --cc builtin/pack-objects.c index 400d359daa,43cd4be2e5..75712b7786 --- a/builtin/pack-objects.c +++ b/builtin/pack-objects.c @@@ -220,9 -220,9 +221,10 @@@ static int incremental static int ignore_packed_keep_on_disk; static int ignore_packed_keep_in_core; static int ignore_packed_keep_in_core_open; +static const char *stdin_packs_refs_snapshot; static int ignore_packed_keep_in_core_has_cruft; static int allow_ofs_delta; + static int allow_ref_delta = 1; static struct pack_idx_option pack_idx_opts; static const char *base_name; static int progress = 1;