SYNOPSIS
git verify-pack [-v | --verbose] [-s | --stat-only] [--] <pack>.idx...
DESCRIPTION
Read each idx file for packed Git archive given on the command line, and verify the idx file and the corresponding pack file.
OPTIONS
-
-v -
--verbose -
パックを確認した後、パックに含まれるオブジェクトのリストとデルタチェーン長のヒストグラムを表示します。
-
-s -
--stat-only -
パックの内容を確認せず、デルタチェーン長のヒストグラムのみを表示します。
--verboseを使用すると、オブジェクトのリストも表示されます。 -
-- -
これ以降の引数をオプションとして解釈しないでください。
OUTPUT FORMAT
When specifying the -v option the format used is:
object-name type size size-in-packfile offset-in-packfile
は、パックで削除されていないオブジェクトの場合です。そして、
object-name type size size-in-packfile offset-in-packfile depth base-object-name
は、削除されたオブジェクトの場合です。
GIT
Part of the git(1) suite