]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-verify-pack.txt
verify-tag: migrate to parse-options
[thirdparty/git.git] / Documentation / git-verify-pack.txt
CommitLineData
f9253394
JH
1git-verify-pack(1)
2==================
f9253394
JH
3
4NAME
5----
7bd7f280 6git-verify-pack - Validate packed git archive files
f9253394
JH
7
8
9SYNOPSIS
10--------
b1889c36 11'git verify-pack' [-v] [--] <pack>.idx ...
f9253394
JH
12
13
14DESCRIPTION
15-----------
483bc4f0 16Reads given idx file for packed git archive created with the
ba020ef5 17'git-pack-objects' command and verifies idx file and the
f9253394
JH
18corresponding pack file.
19
20OPTIONS
21-------
22<pack>.idx ...::
23 The idx files to verify.
24
5f40520f
JH
25-v::
26 After verifying the pack, show list of objects contained
df8baa42 27 in the pack.
e994004f 28\--::
e293de3e 29 Do not interpret any more arguments as options.
5f40520f 30
df8baa42
JF
31OUTPUT FORMAT
32-------------
33When specifying the -v option the format used is:
5f40520f 34
5f4347bb 35 SHA1 type size size-in-pack-file offset-in-packfile
5f40520f 36
df8baa42 37for objects that are not deltified in the pack, and
5f40520f 38
5f4347bb 39 SHA1 type size size-in-packfile offset-in-packfile depth base-SHA1
df8baa42
JF
40
41for objects that are deltified.
f9253394
JH
42
43Author
44------
59eb68aa 45Written by Junio C Hamano <gitster@pobox.com>
f9253394
JH
46
47Documentation
48--------------
49Documentation by Junio C Hamano
50
51GIT
52---
9e1f0a85 53Part of the linkgit:git[1] suite