1GIT-MULTI-PACK-IN(1) Git Manual GIT-MULTI-PACK-IN(1)
2
3
4
6 git-multi-pack-index - Write and verify multi-pack-indexes
7
9 git multi-pack-index [--object-dir=<dir>] <verb>
10
11
13 Write or verify a multi-pack-index (MIDX) file.
14
16 --object-dir=<dir>
17 Use given directory for the location of Git objects. We check
18 <dir>/packs/multi-pack-index for the current MIDX file, and
19 <dir>/packs for the pack-files to index.
20
21 write
22 When given as the verb, write a new MIDX file to
23 <dir>/packs/multi-pack-index.
24
25 verify
26 When given as the verb, verify the contents of the MIDX file at
27 <dir>/packs/multi-pack-index.
28
30 · Write a MIDX file for the packfiles in the current .git folder.
31
32 $ git multi-pack-index write
33
34
35 · Write a MIDX file for the packfiles in an alternate object store.
36
37 $ git multi-pack-index --object-dir <alt> write
38
39
40 · Verify the MIDX file for the packfiles in the current .git folder.
41
42 $ git multi-pack-index verify
43
44
46 See The Multi-Pack-Index Design Document[1] and The Multi-Pack-Index
47 Format[2] for more information on the multi-pack-index feature.
48
50 Part of the git(1) suite
51
53 1. The Multi-Pack-Index Design Document
54 file:///usr/share/doc/git/technical/multi-pack-index.html
55
56 2. The Multi-Pack-Index Format
57 file:///usr/share/doc/git/technical/pack-format.html
58
59
60
61Git 2.20.1 12/15/2018 GIT-MULTI-PACK-IN(1)