diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-11-10 18:02:14 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-11-10 18:02:14 +0900 |
commit | 8f1119b988199dd69473c8ac4f9cafa27bff1e52 (patch) | |
tree | 36137574c7ce5e6c805061d656eeeed4323161b1 /builtin/repack.c | |
parent | Merge branch 'en/merge-recursive-directory-rename-fixes' (diff) | |
parent | multi-pack-index: add [--[no-]progress] option. (diff) | |
download | tgif-8f1119b988199dd69473c8ac4f9cafa27bff1e52.tar.xz |
Merge branch 'wb/midx-progress'
The code to generate multi-pack index learned to show (or not to
show) progress indicators.
* wb/midx-progress:
multi-pack-index: add [--[no-]progress] option.
midx: honor the MIDX_PROGRESS flag in midx_repack
midx: honor the MIDX_PROGRESS flag in verify_midx_file
midx: add progress to expire_midx_packs
midx: add progress to write_midx_file
midx: add MIDX_PROGRESS flag
Diffstat (limited to 'builtin/repack.c')
-rw-r--r-- | builtin/repack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/repack.c b/builtin/repack.c index 78b23d7a9a..0781763b06 100644 --- a/builtin/repack.c +++ b/builtin/repack.c @@ -569,7 +569,7 @@ int cmd_repack(int argc, const char **argv, const char *prefix) remove_temporary_files(); if (git_env_bool(GIT_TEST_MULTI_PACK_INDEX, 0)) - write_midx_file(get_object_directory()); + write_midx_file(get_object_directory(), 0); string_list_clear(&names, 0); string_list_clear(&rollback, 0); |