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
|
|
|
|
--------
|
2005-12-09 00:28:05 +01:00
|
|
|
'git-verify-pack' [-v] [--] <pack>.idx ...
|
2005-06-29 11:51:27 +02:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2005-10-11 01:01:31 +02:00
|
|
|
Reads given idx file for packed git archive created with
|
2005-06-29 11:51:27 +02:00
|
|
|
git-pack-objects command and verifies idx file and the
|
|
|
|
corresponding pack file.
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
<pack>.idx ...::
|
|
|
|
The idx files to verify.
|
|
|
|
|
2005-07-14 09:08:05 +02:00
|
|
|
-v::
|
|
|
|
After verifying the pack, show list of objects contained
|
2005-10-03 19:16:30 +02:00
|
|
|
in the pack.
|
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
|
|
|
|
2005-10-03 19:16:30 +02:00
|
|
|
SHA1 type size 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
|
|
|
|
2005-10-03 19:16:30 +02:00
|
|
|
SHA1 type size offset-in-packfile depth base-SHA1
|
|
|
|
|
|
|
|
for objects that are deltified.
|
2005-06-29 11:51:27 +02:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Junio C Hamano <junkio@cox.net>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Junio C Hamano
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 12:10:51 +02:00
|
|
|
Part of the gitlink:git[7] suite
|