diff options
author | Eric Wong <e@80x24.org> | 2019-03-14 09:12:54 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-03-18 14:09:54 +0900 |
commit | 36eba0323d3288a8d3dcb46e5067d88c07cee1ae (patch) | |
tree | f4fae9ededbcf05d59ac46919b58e0e31541cc7c /builtin | |
parent | Merge git://ozlabs.org/~paulus/gitk (diff) | |
download | tgif-36eba0323d3288a8d3dcb46e5067d88c07cee1ae.tar.xz |
repack: enable bitmaps by default on bare repos
A typical use case for bare repos is for serving clones and
fetches to clients. Enable bitmaps by default on bare repos to
make it easier for admins to host git repos in a performant way.
Signed-off-by: Eric Wong <e@80x24.org>
Helped-by: Jeff King <peff@peff.net>
Acked-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/repack.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/builtin/repack.c b/builtin/repack.c index 67f8978043..caca113927 100644 --- a/builtin/repack.c +++ b/builtin/repack.c @@ -14,7 +14,7 @@ static int delta_base_offset = 1; static int pack_kept_objects = -1; -static int write_bitmaps; +static int write_bitmaps = -1; static int use_delta_islands; static char *packdir, *packtmp; @@ -343,6 +343,9 @@ int cmd_repack(int argc, const char **argv, const char *prefix) (unpack_unreachable || (pack_everything & LOOSEN_UNREACHABLE))) die(_("--keep-unreachable and -A are incompatible")); + if (write_bitmaps < 0) + write_bitmaps = (pack_everything & ALL_INTO_ONE) && + is_bare_repository(); if (pack_kept_objects < 0) pack_kept_objects = write_bitmaps; |