diff options
| author | Junio C Hamano <gitster@pobox.com> | 2025-04-08 11:43:14 -0700 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2025-04-08 11:43:14 -0700 |
| commit | 23ee5065c257766b35b7afc115ba303f17d3fa10 (patch) | |
| tree | 7177bdceb27b2b36b3d20ddca092afeaaa2fad7f /builtin/pack-objects.c | |
| parent | Merge branch 'ps/reftable-sans-compat-util' (diff) | |
| parent | midx: implement writing incremental MIDX bitmaps (diff) | |
| download | git-23ee5065c257766b35b7afc115ba303f17d3fa10.tar.gz git-23ee5065c257766b35b7afc115ba303f17d3fa10.zip | |
Merge branch 'tb/incremental-midx-part-2'
Incrementally updating multi-pack index files.
* tb/incremental-midx-part-2:
midx: implement writing incremental MIDX bitmaps
pack-bitmap.c: use `ewah_or_iterator` for type bitmap iterators
pack-bitmap.c: keep track of each layer's type bitmaps
ewah: implement `struct ewah_or_iterator`
pack-bitmap.c: apply pseudo-merge commits with incremental MIDXs
pack-bitmap.c: compute disk-usage with incremental MIDXs
pack-bitmap.c: teach `rev-list --test-bitmap` about incremental MIDXs
pack-bitmap.c: support bitmap pack-reuse with incremental MIDXs
pack-bitmap.c: teach `show_objects_for_type()` about incremental MIDXs
pack-bitmap.c: teach `bitmap_for_commit()` about incremental MIDXs
pack-bitmap.c: open and store incremental bitmap layers
pack-revindex: prepare for incremental MIDX bitmaps
Documentation: describe incremental MIDX bitmaps
Documentation: remove a "future work" item from the MIDX docs
Diffstat (limited to 'builtin/pack-objects.c')
| -rw-r--r-- | builtin/pack-objects.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/pack-objects.c b/builtin/pack-objects.c index 79e1e6fb52..6b06d159d2 100644 --- a/builtin/pack-objects.c +++ b/builtin/pack-objects.c @@ -1398,7 +1398,8 @@ static void write_pack_file(void) if (write_bitmap_index) { bitmap_writer_init(&bitmap_writer, - the_repository, &to_pack); + the_repository, &to_pack, + NULL); bitmap_writer_set_checksum(&bitmap_writer, hash); bitmap_writer_build_type_index(&bitmap_writer, written_list); |
