1GIT-VERIFY-PACK(1) Git Manual GIT-VERIFY-PACK(1)
2
3
4
6 git-verify-pack - Validate packed Git archive files
7
9 git verify-pack [-v|--verbose] [-s|--stat-only] [--] <pack>.idx ...
10
11
13 Reads given idx file for packed Git archive created with the git
14 pack-objects command and verifies idx file and the corresponding pack
15 file.
16
18 <pack>.idx ...
19 The idx files to verify.
20
21 -v, --verbose
22 After verifying the pack, show list of objects contained in the
23 pack and a histogram of delta chain length.
24
25 -s, --stat-only
26 Do not verify the pack contents; only show the histogram of delta
27 chain length. With --verbose, list of objects is also shown.
28
29 --
30 Do not interpret any more arguments as options.
31
33 When specifying the -v option the format used is:
34
35 SHA-1 type size size-in-packfile offset-in-packfile
36
37 for objects that are not deltified in the pack, and
38
39 SHA-1 type size size-in-packfile offset-in-packfile depth base-SHA-1
40
41 for objects that are deltified.
42
44 Part of the git(1) suite
45
46
47
48Git 2.21.0 02/24/2019 GIT-VERIFY-PACK(1)