SYNOPSIS
gitverify-pack
[-v
|--verbose
] [-s
|--stat-only
] [--
] <pack>.idx
…
DESCRIPTION
Reads given idx file for packed Git archive created with the git pack-objects command and verifies the idx file and the corresponding pack file.
OPTIONS
- <pack>.idx …
-
確認するidxファイル(複数ファイル指定可)
-
-v
-
--verbose
-
After verifying the pack, show the list of objects contained in the pack and a histogram of delta chain length.
-
-s
-
--stat-only
-
Do not verify the pack contents; only show the histogram of delta chain length. With
--verbose
, the list of objects is also shown. - --
-
これ以降の引数をオプションとして解釈しないでください。
OUTPUT FORMAT
オプション -v を指定する場合、使用される形式は以下のとおりです:
SHA-1 type size size-in-packfile offset-in-packfile
は、パックで削除されていないオブジェクトの場合です。そして、
SHA-1 type size size-in-packfile offset-in-packfile depth base-SHA-1
は、削除されたオブジェクトの場合です。
GIT
Part of the git(1) suite