2005-06-29 09:51:27 +00:00
|
|
|
git-verify-pack(1)
|
|
|
|
==================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-03-09 16:24:50 +00:00
|
|
|
git-verify-pack - Validate packed git archive files
|
2005-06-29 09:51:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2005-12-08 23:28:05 +00:00
|
|
|
'git-verify-pack' [-v] [--] <pack>.idx ...
|
2005-06-29 09:51:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2005-10-10 23:01:31 +00:00
|
|
|
Reads given idx file for packed git archive created with
|
2005-06-29 09:51:27 +00: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 07:08:05 +00:00
|
|
|
-v::
|
|
|
|
After verifying the pack, show list of objects contained
|
2005-10-03 17:16:30 +00:00
|
|
|
in the pack.
|
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
|
|
|
|
2005-10-03 17:16:30 +00:00
|
|
|
SHA1 type size 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
|
|
|
|
2005-10-03 17:16:30 +00:00
|
|
|
SHA1 type size offset-in-packfile depth base-SHA1
|
|
|
|
|
|
|
|
for objects that are deltified.
|
2005-06-29 09:51:27 +00:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Junio C Hamano <junkio@cox.net>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Junio C Hamano
|
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 10:10:51 +00:00
|
|
|
Part of the gitlink:git[7] suite
|
2005-06-29 09:51:27 +00:00
|
|
|
|