2 .\" Title: git-verify-pack
3 .\" Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
7 .\" Source: Git 2.47.0.rc0
10 .TH "GIT\-VERIFY\-PACK" "1" "2024-09-25" "Git 2\&.47\&.0\&.rc0" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
25 .\" disable justification (adjust text to left margin only)
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
31 git-verify-pack \- Validate packed Git archive files
35 \fIgit verify\-pack\fR [\-v | \-\-verbose] [\-s | \-\-stat\-only] [\-\-] <pack>\&.idx\&...\:
39 Reads given idx file for packed Git archive created with the \fIgit pack\-objects\fR command and verifies the idx file and the corresponding pack file\&.
44 The idx files to verify\&.
49 After verifying the pack, show the list of objects contained in the pack and a histogram of delta chain length\&.
54 Do not verify the pack contents; only show the histogram of delta chain length\&. With
55 \fB\-\-verbose\fR, the list of objects is also shown\&.
60 Do not interpret any more arguments as options\&.
64 When specifying the \-v option the format used is:
70 SHA\-1 type size size\-in\-packfile offset\-in\-packfile
76 for objects that are not deltified in the pack, and
82 SHA\-1 type size size\-in\-packfile offset\-in\-packfile depth base\-SHA\-1
88 for objects that are deltified\&.
91 Part of the \fBgit\fR(1) suite