Git fork
at reftables-rust 49 lines 1.1 kB view raw
1git-verify-pack(1) 2================== 3 4NAME 5---- 6git-verify-pack - Validate packed Git archive files 7 8 9SYNOPSIS 10-------- 11[synopsis] 12git verify-pack [-v | --verbose] [-s | --stat-only] [--] <pack>.idx... 13 14 15DESCRIPTION 16----------- 17Read each idx file for packed Git archive given on the command line, 18and verify the idx file and the corresponding pack file. 19 20OPTIONS 21------- 22`-v`:: 23`--verbose`:: 24 After verifying the pack, show the list of objects contained 25 in the pack and a histogram of delta chain length. 26 27`-s`:: 28`--stat-only`:: 29 Do not verify the pack contents; only show the histogram of delta 30 chain length. With `--verbose`, the list of objects is also shown. 31 32`--`:: 33 Do not interpret any more arguments as options. 34 35OUTPUT FORMAT 36------------- 37When specifying the `-v` option the format used is: 38 39 object-name type size size-in-packfile offset-in-packfile 40 41for objects that are not deltified in the pack, and 42 43 object-name type size size-in-packfile offset-in-packfile depth base-object-name 44 45for objects that are deltified. 46 47GIT 48--- 49Part of the linkgit:git[1] suite