]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-verify-pack.txt
Error message from get_sha1() on ambiguous short SHA1.
[thirdparty/git.git] / Documentation / git-verify-pack.txt
CommitLineData
f9253394
JH
1git-verify-pack(1)
2==================
3v0.1, June 2005
4
5NAME
6----
7git-verify-pack - Validate packed GIT archive files.
8
9
10SYNOPSIS
11--------
5f40520f 12'git-verify-pack' [-v] <pack>.idx ...
f9253394
JH
13
14
15DESCRIPTION
16-----------
17Reads given idx file for packed GIT archive created with
18git-pack-objects command and verifies idx file and the
19corresponding pack file.
20
21OPTIONS
22-------
23<pack>.idx ...::
24 The idx files to verify.
25
5f40520f
JH
26-v::
27 After verifying the pack, show list of objects contained
28 in the pack. The format used is:
29
30 SHA1 type size offset-in-packfile
31
32 for objects that are not deltified in the pack, and
33
34 SHA1 type size offset-in-packfile depth base-SHA1
35
36 for objects that are deltified.
f9253394
JH
37
38Author
39------
40Written by Junio C Hamano <junkio@cox.net>
41
42Documentation
43--------------
44Documentation by Junio C Hamano
45
46GIT
47---
a7154e91 48Part of the gitlink:git[7] suite
f9253394 49