Raw
1 git-verify-pack(1)
2 ==================
3
4 NAME
5 ----
6 git-verify-pack - Validate packed Git archive files
7
8
9 SYNOPSIS
10 --------
11 [synopsis]
12 git verify-pack [-v | --verbose] [-s | --stat-only] [--] <pack>.idx...
13
14
15 DESCRIPTION
16 -----------
17 Read each idx file for packed Git archive given on the command line,
18 and verify the idx file and the corresponding pack file.
19
20 OPTIONS
21 -------
22 `-v`::
23 `--verbose`::
24 After verifying the pack, show the list of objects contained
25 in the pack and a histogram of delta chain length.
26
27 `-s`::
28 `--stat-only`::
29 Do not verify the pack contents; only show the histogram of delta
30 chain length. With `--verbose`, the list of objects is also shown.
31
32 `--`::
33 Do not interpret any more arguments as options.
34
35 OUTPUT FORMAT
36 -------------
37 When specifying the `-v` option the format used is:
38
39 object-name type size size-in-packfile offset-in-packfile
40
41 for objects that are not deltified in the pack, and
42
43 object-name type size size-in-packfile offset-in-packfile depth base-object-name
44
45 for objects that are deltified.
46
47 GIT
48 ---
49 Part of the linkgit:git[1] suite