]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-verify-pack.txt
Merge git://git.bogomips.org/git-svn
[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--------
ec48d4bb 11'git verify-pack' [-v|--verbose] [-s|--stat-only] [--] <pack>.idx ...
f9253394
JH
12
13
14DESCRIPTION
15-----------
483bc4f0 16Reads given idx file for packed git archive created with the
0b444cdb 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 25-v::
c9c3c678 26--verbose::
5f40520f 27 After verifying the pack, show list of objects contained
6c4f3ec9
JH
28 in the pack and a histogram of delta chain length.
29
30-s::
31--stat-only::
32 Do not verify the pack contents; only show the histogram of delta
33 chain length. With `--verbose`, list of objects is also shown.
34
e994004f 35\--::
e293de3e 36 Do not interpret any more arguments as options.
5f40520f 37
df8baa42
JF
38OUTPUT FORMAT
39-------------
40When specifying the -v option the format used is:
5f40520f 41
5f4347bb 42 SHA1 type size size-in-pack-file offset-in-packfile
5f40520f 43
df8baa42 44for objects that are not deltified in the pack, and
5f40520f 45
5f4347bb 46 SHA1 type size size-in-packfile offset-in-packfile depth base-SHA1
df8baa42
JF
47
48for objects that are deltified.
f9253394 49
f9253394
JH
50GIT
51---
9e1f0a85 52Part of the linkgit:git[1] suite