$ git multi-pack-index write
git-multi-pack-index - Write and verify multi-pack-indexes
Write or verify a multi-pack-index (MIDX) file.
Use given directory for the location of Git objects. We check <dir>/packs/multi-pack-index for the current MIDX file, and <dir>/packs for the pack-files to index.
When given as the verb, write a new MIDX file to <dir>/packs/multi-pack-index.
When given as the verb, verify the contents of the MIDX file at <dir>/packs/multi-pack-index.
Write a MIDX file for the packfiles in the current .git folder.
$ git multi-pack-index write
Write a MIDX file for the packfiles in an alternate object store.
$ git multi-pack-index --object-dir <alt> write
Verify the MIDX file for the packfiles in the current .git folder.
$ git multi-pack-index verify
See The Multi-Pack-Index Design Document and The Multi-Pack-Index Format for more information on the multi-pack-index feature.
Part of the git(1) suite