6 git-verify-pack - Validate packed git archive files
11 'git verify-pack' [-v|--verbose] [--] <pack>.idx ...
16 Reads given idx file for packed git archive created with the
17 'git pack-objects' command and verifies idx file and the
18 corresponding pack file.
23 The idx files to verify.
27 After verifying the pack, show list of objects contained
28 in the pack and a histogram of delta chain length.
32 Do not verify the pack contents; only show the histogram of delta
33 chain length. With `--verbose`, list of objects is also shown.
36 Do not interpret any more arguments as options.
40 When specifying the -v option the format used is:
42 SHA1 type size size-in-pack-file offset-in-packfile
44 for objects that are not deltified in the pack, and
46 SHA1 type size size-in-packfile offset-in-packfile depth base-SHA1
48 for objects that are deltified.
52 Written by Junio C Hamano <gitster@pobox.com>
56 Documentation by Junio C Hamano
60 Part of the linkgit:git[1] suite