]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-verify-pack.txt
Several trivial documentation touch ups.
[thirdparty/git.git] / Documentation / git-verify-pack.txt
CommitLineData
f9253394
JH
1git-verify-pack(1)
2==================
f9253394
JH
3
4NAME
5----
7bd7f280 6git-verify-pack - Validate packed git archive files
f9253394
JH
7
8
9SYNOPSIS
10--------
e293de3e 11'git-verify-pack' [-v] [--] <pack>.idx ...
f9253394
JH
12
13
14DESCRIPTION
15-----------
72e9340c 16Reads given idx file for packed git archive created with
f9253394
JH
17git-pack-objects command and verifies idx file and the
18corresponding pack file.
19
20OPTIONS
21-------
22<pack>.idx ...::
23 The idx files to verify.
24
5f40520f
JH
25-v::
26 After verifying the pack, show list of objects contained
df8baa42 27 in the pack.
e293de3e
NW
28--::
29 Do not interpret any more arguments as options.
5f40520f 30
df8baa42
JF
31OUTPUT FORMAT
32-------------
33When specifying the -v option the format used is:
5f40520f 34
df8baa42 35 SHA1 type size offset-in-packfile
5f40520f 36
df8baa42 37for objects that are not deltified in the pack, and
5f40520f 38
df8baa42
JF
39 SHA1 type size offset-in-packfile depth base-SHA1
40
41for objects that are deltified.
f9253394
JH
42
43Author
44------
45Written by Junio C Hamano <junkio@cox.net>
46
47Documentation
48--------------
49Documentation by Junio C Hamano
50
51GIT
52---
a7154e91 53Part of the gitlink:git[7] suite
f9253394 54