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