—
NAME
git-verify-pack - Validate packed Git archive files
SYNOPSIS
bash
git verify-pack\n [-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 ...
-v, --verbose
-s, --stat-only
--
OUTPUT FORMAT
When specifying the -v option the format used is:
bash
SHA-1 type size size-in-packfile offset-in-packfilefor objects that are not deltified in the pack, and
bash
SHA-1 type size size-in-packfile offset-in-packfile depth base-SHA-1for objects that are deltified.
GIT
Part of the git(1) suite