6 git-verify-pack - Validate packed Git archive files
12 'git verify-pack' [-v|--verbose] [-s|--stat-only] [--] <pack>.idx ...
17 Reads given idx file for packed Git archive created with the
18 'git pack-objects' command and verifies idx file and the
19 corresponding pack file.
24 The idx files to verify.
28 After verifying the pack, show list of objects contained
29 in the pack and a histogram of delta chain length.
33 Do not verify the pack contents; only show the histogram of delta
34 chain length. With `--verbose`, list of objects is also shown.
37 Do not interpret any more arguments as options.
41 When specifying the -v option the format used is:
43 SHA-1 type size size-in-packfile offset-in-packfile
45 for objects that are not deltified in the pack, and
47 SHA-1 type size size-in-packfile offset-in-packfile depth base-SHA-1
49 for objects that are deltified.
53 Part of the linkgit:git[1] suite