[PATCH] Fix "git-local-fetch -s" with packed source repository
[git/gitweb.git] / Documentation / git-verify-pack.txt
blobd1043eb8df46c3e285e9974c203556e86cf722f1
1 git-verify-pack(1)
2 ==================
3 v0.1, June 2005
5 NAME
6 ----
7 git-verify-pack - Validate packed GIT archive files.
10 SYNOPSIS
11 --------
12 'git-verify-pack' [-v] <pack>.idx ...
15 DESCRIPTION
16 -----------
17 Reads given idx file for packed GIT archive created with
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         After verifying the pack, show list of objects contained
28         in the pack.  The format used is:
30                 SHA1 type size offset-in-packfile
32         for objects that are not deltified in the pack, and
34                 SHA1 type size offset-in-packfile depth base-SHA1
36         for objects that are deltified.
38 Author
39 ------
40 Written by Junio C Hamano <junkio@cox.net>
42 Documentation
43 --------------
44 Documentation by Junio C Hamano
46 GIT
47 ---
48 Part of the link:git.html[git] suite