English â–¾
Localized versions of git-multi-pack-index manual
Topics â–¾
Email
Version 2.20.0
â–¾
git-multi-pack-index last updated in 2.47.0
Changes in the git-multi-pack-index manual
Setup and Config
Getting and Creating Projects
Basic Snapshotting
Branching and Merging
Sharing and Updating Projects
Inspection and Comparison
Patching
Debugging
External Systems
Server Admin
Guides
- gitattributes
- Command-line interface conventions
- Everyday Git
- Frequently Asked Questions (FAQ)
- Glossary
- Hooks
- gitignore
- gitmodules
- Revisions
- Submodules
- Tutorial
- Workflows
- All guides...
Administration
Plumbing Commands
- 2.47.0 10/06/24
- 2.38.3 → 2.46.2 no changes
- 2.38.2 12/11/22
- 2.38.1 no changes
- 2.38.0 10/02/22
- 2.34.1 → 2.37.7 no changes
- 2.34.0 11/15/21
- 2.32.1 → 2.33.8 no changes
- 2.32.0 06/06/21
- 2.29.1 → 2.31.8 no changes
- 2.29.0 10/19/20
- 2.27.1 → 2.28.1 no changes
- 2.27.0 06/01/20
- 2.25.1 → 2.26.3 no changes
- 2.25.0 01/13/20
- 2.23.1 → 2.24.4 no changes
- 2.23.0 08/16/19
- 2.20.1 → 2.22.5 no changes
- 2.20.0 12/09/18
OPTIONS
- --object-dir=<dir>
-
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. - write
-
When given as the verb, write a new MIDX file to
<dir>/packs/multi-pack-index
. - verify
-
When given as the verb, verify the contents of the MIDX file at
<dir>/packs/multi-pack-index
.
EXAMPLES
-
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 ALSO
See The Multi-Pack-Index Design Document and The Multi-Pack-Index Format for more information on the multi-pack-index feature.
GIT
Part of the git[1] suite