Autogenerated manpages for v2.41.0-337-g830b4
[git-manpages.git] / man1 / git-verify-pack.1
blobbd9821c55aae7db21316c391584aa975900bf701
1 '\" t
2 .\"     Title: git-verify-pack
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2023-07-14
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.41.0.337.g830b4a04c4
8 .\"  Language: English
9 .\"
10 .TH "GIT\-VERIFY\-PACK" "1" "2023\-07\-14" "Git 2\&.41\&.0\&.337\&.g830b4a" "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 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 git-verify-pack \- Validate packed Git archive files
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 \fIgit verify\-pack\fR [\-v | \-\-verbose] [\-s | \-\-stat\-only] [\-\-] <pack>\&.idx\&...
36 .fi
37 .sp
38 .SH "DESCRIPTION"
39 .sp
40 Reads given idx file for packed Git archive created with the \fIgit pack\-objects\fR command and verifies idx file and the corresponding pack file\&.
41 .SH "OPTIONS"
42 .PP
43 <pack>\&.idx \&...
44 .RS 4
45 The idx files to verify\&.
46 .RE
47 .PP
48 \-v, \-\-verbose
49 .RS 4
50 After verifying the pack, show list of objects contained in the pack and a histogram of delta chain length\&.
51 .RE
52 .PP
53 \-s, \-\-stat\-only
54 .RS 4
55 Do not verify the pack contents; only show the histogram of delta chain length\&. With
56 \fB\-\-verbose\fR, list of objects is also shown\&.
57 .RE
58 .PP
59 \-\-
60 .RS 4
61 Do not interpret any more arguments as options\&.
62 .RE
63 .SH "OUTPUT FORMAT"
64 .sp
65 When specifying the \-v option the format used is:
66 .sp
67 .if n \{\
68 .RS 4
69 .\}
70 .nf
71 SHA\-1 type size size\-in\-packfile offset\-in\-packfile
72 .fi
73 .if n \{\
74 .RE
75 .\}
76 .sp
77 for objects that are not deltified in the pack, and
78 .sp
79 .if n \{\
80 .RS 4
81 .\}
82 .nf
83 SHA\-1 type size size\-in\-packfile offset\-in\-packfile depth base\-SHA\-1
84 .fi
85 .if n \{\
86 .RE
87 .\}
88 .sp
89 for objects that are deltified\&.
90 .SH "GIT"
91 .sp
92 Part of the \fBgit\fR(1) suite