Make pack creation always fsync() the result
[git/dscho.git] / Documentation / git-verify-pack.txt
blobba2a157299566b4dcc88f8ecb6f0eaed755f95bb
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] [--] <pack>.idx ...
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.
20 OPTIONS
21 -------
22 <pack>.idx ...::
23         The idx files to verify.
25 -v::
26         After verifying the pack, show list of objects contained
27         in the pack.
28 \--::
29         Do not interpret any more arguments as options.
31 OUTPUT FORMAT
32 -------------
33 When specifying the -v option the format used is:
35         SHA1 type size size-in-pack-file offset-in-packfile
37 for objects that are not deltified in the pack, and
39         SHA1 type size size-in-packfile offset-in-packfile depth base-SHA1
41 for objects that are deltified.
43 Author
44 ------
45 Written by Junio C Hamano <junkio@cox.net>
47 Documentation
48 --------------
49 Documentation by Junio C Hamano
51 GIT
52 ---
53 Part of the linkgit:git[7] suite