summaryrefslogtreecommitdiff
path: root/Documentation/git-multi-pack-index.txt
diff options
context:
space:
mode:
authorDerrick Stolee <dstolee@microsoft.com>2018-09-13 18:02:13 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-09-17 20:49:38 (GMT)
commit56ee7ff15655fa1c9a1368ddd717fc84556359bc (patch)
treed5aba233c33b1a11faac323eb97de0d33e3f84e6 /Documentation/git-multi-pack-index.txt
parent6a22d521260f86dff8fe6f23ab329cebb62ba4f0 (diff)
downloadgit-56ee7ff15655fa1c9a1368ddd717fc84556359bc.zip
git-56ee7ff15655fa1c9a1368ddd717fc84556359bc.tar.gz
git-56ee7ff15655fa1c9a1368ddd717fc84556359bc.tar.bz2
multi-pack-index: add 'verify' verb
The multi-pack-index builtin writes multi-pack-index files, and uses a 'write' verb to do so. Add a 'verify' verb that checks this file matches the contents of the pack-indexes it replaces. The current implementation is a no-op, but will be extended in small increments in later commits. Signed-off-by: Derrick Stolee <dstolee@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/git-multi-pack-index.txt')
-rw-r--r--Documentation/git-multi-pack-index.txt10
1 files changed, 10 insertions, 0 deletions
diff --git a/Documentation/git-multi-pack-index.txt b/Documentation/git-multi-pack-index.txt
index 1f97e79..f7778a2 100644
--- a/Documentation/git-multi-pack-index.txt
+++ b/Documentation/git-multi-pack-index.txt
@@ -27,6 +27,10 @@ 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
--------
@@ -43,6 +47,12 @@ $ git multi-pack-index write
$ 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
--------