]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-verify-pack.txt
Merge branch 'maint' into jc/verify-pack-stat
[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--------
c9c3c678 11'git verify-pack' [-v|--verbose] [--] <pack>.idx ...
f9253394
JH
12
13
14DESCRIPTION
15-----------
483bc4f0 16Reads given idx file for packed git archive created with the
ba020ef5 17'git-pack-objects' command and verifies idx file and the
f9253394
JH
18corresponding pack file.
19
20OPTIONS
21-------
22<pack>.idx ...::
23 The idx files to verify.
24
5f40520f 25-v::
c9c3c678 26--verbose::
5f40520f 27 After verifying the pack, show list of objects contained
df8baa42 28 in the pack.
e994004f 29\--::
e293de3e 30 Do not interpret any more arguments as options.
5f40520f 31
df8baa42
JF
32OUTPUT FORMAT
33-------------
34When specifying the -v option the format used is:
5f40520f 35
5f4347bb 36 SHA1 type size size-in-pack-file offset-in-packfile
5f40520f 37
df8baa42 38for objects that are not deltified in the pack, and
5f40520f 39
5f4347bb 40 SHA1 type size size-in-packfile offset-in-packfile depth base-SHA1
df8baa42
JF
41
42for objects that are deltified.
f9253394
JH
43
44Author
45------
59eb68aa 46Written by Junio C Hamano <gitster@pobox.com>
f9253394
JH
47
48Documentation
49--------------
50Documentation by Junio C Hamano
51
52GIT
53---
9e1f0a85 54Part of the linkgit:git[1] suite