7 git-verify-pack - Validate packed GIT archive files.
12 'git-verify-pack' [-v] <pack>.idx ...
17 Reads given idx file for packed GIT archive created with
18 git-pack-objects command and verifies idx file and the
19 corresponding pack file.
24 The idx files to verify.
27 After verifying the pack, show list of objects contained
28 in the pack. The format used is:
30 SHA1 type size offset-in-packfile
32 for objects that are not deltified in the pack, and
34 SHA1 type size offset-in-packfile depth base-SHA1
36 for objects that are deltified.
40 Written by Junio C Hamano <junkio@cox.net>
44 Documentation by Junio C Hamano
48 Part of the gitlink:git[7] suite