1GIT-VERIFY-PACK(1) Git Manual GIT-VERIFY-PACK(1)
2
3
4
6 git-verify-pack - Validate packed git archive files
7
9 git verify-pack [-v|--verbose] [-s|--stat-only] [--] <pack>.idx ...
10
12 Reads given idx file for packed git archive created with the git
13 pack-objects command and verifies idx file and the corresponding pack
14 file.
15
17 <pack>.idx ...
18 The idx files to verify.
19
20 -v, --verbose
21 After verifying the pack, show list of objects contained in the
22 pack and a histogram of delta chain length.
23
24 -s, --stat-only
25 Do not verify the pack contents; only show the histogram of delta
26 chain length. With --verbose, list of objects is also shown.
27
28 --
29 Do not interpret any more arguments as options.
30
32 When specifying the -v option the format used is:
33
34 SHA1 type size size-in-pack-file offset-in-packfile
35
36 for objects that are not deltified in the pack, and
37
38 SHA1 type size size-in-packfile offset-in-packfile depth base-SHA1
39
40 for objects that are deltified.
41
43 Written by Junio C Hamano <gitster@pobox.com[1]>
44
46 Documentation by Junio C Hamano
47
49 Part of the git(1) suite
50
52 1. gitster@pobox.com
53 mailto:gitster@pobox.com
54
55
56
57Git 1.7.4.4 04/11/2011 GIT-VERIFY-PACK(1)