Makefile: make script-related rules usable from subdirectories
[git.git] / Documentation / git-verify-pack.txt
blob0eb9ffbdd2e691c24ed07eb8c97828bc3a81b427
1 git-verify-pack(1)
2 ==================
4 NAME
5 ----
6 git-verify-pack - Validate packed Git archive files
9 SYNOPSIS
10 --------
11 [verse]
12 'git verify-pack' [-v|--verbose] [-s|--stat-only] [--] <pack>.idx ...
15 DESCRIPTION
16 -----------
17 Reads given idx file for packed Git archive created with the
18 'git pack-objects' command and verifies idx file and the
19 corresponding pack file.
21 OPTIONS
22 -------
23 <pack>.idx ...::
24         The idx files to verify.
26 -v::
27 --verbose::
28         After verifying the pack, show list of objects contained
29         in the pack and a histogram of delta chain length.
31 -s::
32 --stat-only::
33         Do not verify the pack contents; only show the histogram of delta
34         chain length.  With `--verbose`, list of objects is also shown.
36 \--::
37         Do not interpret any more arguments as options.
39 OUTPUT FORMAT
40 -------------
41 When specifying the -v option the format used is:
43         SHA1 type size size-in-pack-file offset-in-packfile
45 for objects that are not deltified in the pack, and
47         SHA1 type size size-in-packfile offset-in-packfile depth base-SHA1
49 for objects that are deltified.
51 GIT
52 ---
53 Part of the linkgit:git[1] suite