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
30 Do not interpret any more arguments as options.
34 When specifying the -v option the format used is:
36 SHA1 type size size-in-pack-file offset-in-packfile
38 for objects that are not deltified in the pack, and
40 SHA1 type size size-in-packfile offset-in-packfile depth base-SHA1
42 for objects that are deltified.
46 Written by Junio C Hamano <gitster@pobox.com>
50 Documentation by Junio C Hamano
54 Part of the linkgit:git[1] suite