repack: add config to skip updating server info
commita2565c48e410864c049e66a64393fd6e26eb9a55
authorPatrick Steinhardt <ps@pks.im>
Mon, 14 Mar 2022 07:42:51 +0000 (14 08:42 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 14 Mar 2022 22:25:13 +0000 (14 22:25 +0000)
treea0f0f3d13bc97b60d63ca4b02298ce9ff8aaad6f
parent64a6151da7fa4b36eb2818047a9b76797e25b46e
repack: add config to skip updating server info

By default, git-repack(1) will update server info that is required by
the dumb HTTP transport. This can be skipped by passing the `-n` flag,
but what we're noticably missing is a config option to permanently
disable updating this information.

Add a new option "repack.updateServerInfo" which can be used to disable
the logic. Most hosting providers have turned off the dumb HTTP protocol
anyway, and on the client-side it woudln't typically be useful either.
Giving a persistent way to disable this feature thus makes quite some
sense to avoid wasting compute cycles and storage.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/config/repack.txt
builtin/repack.c
t/t7700-repack.sh