2005-06-29 11:51:27 +02:00
|
|
|
git-verify-pack(1)
|
|
|
|
==================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-03-09 17:24:50 +01:00
|
|
|
git-verify-pack - Validate packed git archive files
|
2005-06-29 11:51:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2009-07-08 07:15:40 +02:00
|
|
|
'git verify-pack' [-v|--verbose] [--] <pack>.idx ...
|
2005-06-29 11:51:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2008-06-30 20:56:34 +02:00
|
|
|
Reads given idx file for packed git archive created with the
|
2010-01-10 00:33:00 +01:00
|
|
|
'git pack-objects' command and verifies idx file and the
|
2005-06-29 11:51:27 +02:00
|
|
|
corresponding pack file.
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
<pack>.idx ...::
|
|
|
|
The idx files to verify.
|
|
|
|
|
2005-07-14 09:08:05 +02:00
|
|
|
-v::
|
2009-07-08 07:15:40 +02:00
|
|
|
--verbose::
|
2005-07-14 09:08:05 +02:00
|
|
|
After verifying the pack, show list of objects contained
|
2009-08-08 00:45:30 +02: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 21:05:24 +02:00
|
|
|
\--::
|
2005-12-09 00:28:05 +01:00
|
|
|
Do not interpret any more arguments as options.
|
2005-07-14 09:08:05 +02:00
|
|
|
|
2005-10-03 19:16:30 +02:00
|
|
|
OUTPUT FORMAT
|
|
|
|
-------------
|
|
|
|
When specifying the -v option the format used is:
|
2005-07-14 09:08:05 +02:00
|
|
|
|
2008-02-28 06:25:20 +01:00
|
|
|
SHA1 type size size-in-pack-file offset-in-packfile
|
2005-07-14 09:08:05 +02:00
|
|
|
|
2005-10-03 19:16:30 +02:00
|
|
|
for objects that are not deltified in the pack, and
|
2005-07-14 09:08:05 +02:00
|
|
|
|
2008-02-28 06:25:20 +01:00
|
|
|
SHA1 type size size-in-packfile offset-in-packfile depth base-SHA1
|
2005-10-03 19:16:30 +02:00
|
|
|
|
|
|
|
for objects that are deltified.
|
2005-06-29 11:51:27 +02:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
2008-07-21 21:14:42 +02:00
|
|
|
Written by Junio C Hamano <gitster@pobox.com>
|
2005-06-29 11:51:27 +02:00
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Junio C Hamano
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|