]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-verify-pack.txt
t4034: abstract away SHA-1-specific constants
[thirdparty/git.git] / Documentation / git-verify-pack.txt
CommitLineData
f9253394
JH
1git-verify-pack(1)
2==================
f9253394
JH
3
4NAME
5----
2de9b711 6git-verify-pack - Validate packed Git archive files
f9253394
JH
7
8
9SYNOPSIS
10--------
7791a1d9 11[verse]
ec48d4bb 12'git verify-pack' [-v|--verbose] [-s|--stat-only] [--] <pack>.idx ...
f9253394
JH
13
14
15DESCRIPTION
16-----------
2de9b711 17Reads given idx file for packed Git archive created with the
0b444cdb 18'git pack-objects' command and verifies idx file and the
f9253394
JH
19corresponding pack file.
20
21OPTIONS
22-------
23<pack>.idx ...::
24 The idx files to verify.
25
5f40520f 26-v::
c9c3c678 27--verbose::
5f40520f 28 After verifying the pack, show list of objects contained
6c4f3ec9
JH
29 in the pack and a histogram of delta chain length.
30
31-s::
32--stat-only::
33 Do not verify the pack contents; only show the histogram of delta
34 chain length. With `--verbose`, list of objects is also shown.
35
e994004f 36\--::
e293de3e 37 Do not interpret any more arguments as options.
5f40520f 38
df8baa42
JF
39OUTPUT FORMAT
40-------------
41When specifying the -v option the format used is:
5f40520f 42
d017a450 43 SHA-1 type size size-in-packfile offset-in-packfile
5f40520f 44
df8baa42 45for objects that are not deltified in the pack, and
5f40520f 46
d5fa1f1a 47 SHA-1 type size size-in-packfile offset-in-packfile depth base-SHA-1
df8baa42
JF
48
49for objects that are deltified.
f9253394 50
f9253394
JH
51GIT
52---
9e1f0a85 53Part of the linkgit:git[1] suite