block-sha1: improved SHA1 hashing
[git/dscho.git] / Documentation / git-verify-pack.txt
blobd791a80819b39b5c3b07ace9d30f16c63f56fd2e
1 git-verify-pack(1)
2 ==================
4 NAME
5 ----
6 git-verify-pack - Validate packed git archive files
9 SYNOPSIS
10 --------
11 'git verify-pack' [-v|--verbose] [--] <pack>.idx ...
14 DESCRIPTION
15 -----------
16 Reads given idx file for packed git archive created with the
17 'git-pack-objects' command and verifies idx file and the
18 corresponding pack file.
20 OPTIONS
21 -------
22 <pack>.idx ...::
23         The idx files to verify.
25 -v::
26 --verbose::
27         After verifying the pack, show list of objects contained
28         in the pack.
29 \--::
30         Do not interpret any more arguments as options.
32 OUTPUT FORMAT
33 -------------
34 When specifying the -v option the format used is:
36         SHA1 type size size-in-pack-file offset-in-packfile
38 for objects that are not deltified in the pack, and
40         SHA1 type size size-in-packfile offset-in-packfile depth base-SHA1
42 for objects that are deltified.
44 Author
45 ------
46 Written by Junio C Hamano <gitster@pobox.com>
48 Documentation
49 --------------
50 Documentation by Junio C Hamano
52 GIT
53 ---
54 Part of the linkgit:git[1] suite