blob: 535a884642b7a2088729c5a085e08e2487f79c7d [file] [log] [blame]
Junio C Hamano1a4e8412005-12-27 08:17:231git-show-index(1)
2=================
3
4NAME
5----
6git-show-index - Show packed archive index
7
8
9SYNOPSIS
10--------
11'git-show-index' < idx-file
12
13
14DESCRIPTION
15-----------
16Reads given idx file for packed git archive created with
17git-pack-objects command, and dumps its contents.
18
19The information it outputs is subset of what you can get from
20'git-verify-pack -v'; this command only shows the packfile
21offset and SHA1 of each object.
22
23
24Author
25------
26Written by Linus Torvalds <torvalds@osdl.org>
27
28Documentation
29--------------
30Documentation by Junio C Hamano
31
32GIT
33---
Junio C Hamano35738e82008-01-07 07:55:4634Part of the linkgit:git[7] suite