1git-verify-pack(1) 2================== 3 4NAME 5---- 6git-verify-pack - Validate packed git archive files 7 8 9SYNOPSIS 10-------- 11'git verify-pack' [-v|--verbose] [--] <pack>.idx ... 12 13 14DESCRIPTION 15----------- 16Reads given idx file for packed git archive created with the 17'git-pack-objects' command and verifies idx file and the 18corresponding pack file. 19 20OPTIONS 21------- 22<pack>.idx ...:: 23 The idx files to verify. 24 25-v:: 26--verbose:: 27 After verifying the pack, show list of objects contained 28 in the pack. 29\--:: 30 Do not interpret any more arguments as options. 31 32OUTPUT FORMAT 33------------- 34When specifying the -v option the format used is: 35 36 SHA1 type size size-in-pack-file offset-in-packfile 37 38for objects that are not deltified in the pack, and 39 40 SHA1 type size size-in-packfile offset-in-packfile depth base-SHA1 41 42for objects that are deltified. 43 44Author 45------ 46Written by Junio C Hamano <gitster@pobox.com> 47 48Documentation 49-------------- 50Documentation by Junio C Hamano 51 52GIT 53--- 54Part of the linkgit:git[1] suite