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