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