6 git-verify-pack - Validate packed git archive files
11 'git verify-pack' [-v] [--] <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.
26 After verifying the pack, show list of objects contained
29 Do not interpret any more arguments as options.
33 When specifying the -v option the format used is:
35 SHA1 type size size-in-pack-file offset-in-packfile
37 for objects that are not deltified in the pack, and
39 SHA1 type size size-in-packfile offset-in-packfile depth base-SHA1
41 for objects that are deltified.
45 Written by Junio C Hamano <gitster@pobox.com>
49 Documentation by Junio C Hamano
53 Part of the linkgit:git[1] suite