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