]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-verify-pack.txt
Documentation/git-commit.txt: Add long options and -- to documentation.
[thirdparty/git.git] / Documentation / git-verify-pack.txt
CommitLineData
f9253394
JH
1git-verify-pack(1)
2==================
f9253394
JH
3
4NAME
5----
72e9340c 6git-verify-pack - Validate packed git archive files.
f9253394
JH
7
8
9SYNOPSIS
10--------
5f40520f 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.
5f40520f 28
df8baa42
JF
29OUTPUT FORMAT
30-------------
31When specifying the -v option the format used is:
5f40520f 32
df8baa42 33 SHA1 type size offset-in-packfile
5f40520f 34
df8baa42 35for objects that are not deltified in the pack, and
5f40520f 36
df8baa42
JF
37 SHA1 type size offset-in-packfile depth base-SHA1
38
39for objects that are deltified.
f9253394
JH
40
41Author
42------
43Written by Junio C Hamano <junkio@cox.net>
44
45Documentation
46--------------
47Documentation by Junio C Hamano
48
49GIT
50---
a7154e91 51Part of the gitlink:git[7] suite
f9253394 52