2005-06-29 17:51:27 +08:00
|
|
|
git-verify-pack(1)
|
|
|
|
==================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2013-01-22 03:17:53 +08:00
|
|
|
git-verify-pack - Validate packed Git archive files
|
2005-06-29 17:51:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 10:38:26 +08:00
|
|
|
[verse]
|
2022-10-13 23:39:06 +08:00
|
|
|
'git verify-pack' [-v | --verbose] [-s | --stat-only] [--] <pack>.idx...
|
2005-06-29 17:51:27 +08:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2013-01-22 03:17:53 +08:00
|
|
|
Reads given idx file for packed Git archive created with the
|
2010-01-10 07:33:00 +08:00
|
|
|
'git pack-objects' command and verifies idx file and the
|
2005-06-29 17:51:27 +08:00
|
|
|
corresponding pack file.
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
<pack>.idx ...::
|
|
|
|
The idx files to verify.
|
|
|
|
|
2005-07-14 15:08:05 +08:00
|
|
|
-v::
|
2009-07-08 13:15:40 +08:00
|
|
|
--verbose::
|
2005-07-14 15:08:05 +08:00
|
|
|
After verifying the pack, show list of objects contained
|
2009-08-08 06:45:30 +08:00
|
|
|
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`, list of objects is also shown.
|
|
|
|
|
2006-05-06 03:05:24 +08:00
|
|
|
\--::
|
2005-12-09 07:28:05 +08:00
|
|
|
Do not interpret any more arguments as options.
|
2005-07-14 15:08:05 +08:00
|
|
|
|
2005-10-04 01:16:30 +08:00
|
|
|
OUTPUT FORMAT
|
|
|
|
-------------
|
|
|
|
When specifying the -v option the format used is:
|
2005-07-14 15:08:05 +08:00
|
|
|
|
2015-05-17 14:56:52 +08:00
|
|
|
SHA-1 type size size-in-packfile offset-in-packfile
|
2005-07-14 15:08:05 +08:00
|
|
|
|
2005-10-04 01:16:30 +08:00
|
|
|
for objects that are not deltified in the pack, and
|
2005-07-14 15:08:05 +08:00
|
|
|
|
2013-04-16 01:49:04 +08:00
|
|
|
SHA-1 type size size-in-packfile offset-in-packfile depth base-SHA-1
|
2005-10-04 01:16:30 +08:00
|
|
|
|
|
|
|
for objects that are deltified.
|
2005-06-29 17:51:27 +08:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 15:07:32 +08:00
|
|
|
Part of the linkgit:git[1] suite
|