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