2005-07-14 09:08:05 +02:00
|
|
|
git-show-index(1)
|
|
|
|
=================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
git-show-index - Show packed archive index
|
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 04:38:26 +02:00
|
|
|
[verse]
|
usage: do not insist that standard input must come from a file
The synopsys text and the usage string of subcommands that read list
of things from the standard input are often shown like this:
git gostak [--distim] < <list-of-doshes>
This is problematic in a number of ways:
* The way to use these commands is more often to feed them the
output from another command, not feed them from a file.
* Manual pages outside Git, commands that operate on the data read
from the standard input, e.g "sort", "grep", "sed", etc., are not
described with such a "< redirection-from-file" in their synopsys
text. Our doing so introduces inconsistency.
* We do not insist on where the output should go, by saying
git gostak [--distim] < <list-of-doshes> > <output>
* As it is our convention to enclose placeholders inside <braket>,
the redirection operator followed by a placeholder filename
becomes very hard to read, both in the documentation and in the
help text.
Let's clean them all up, after making sure that the documentation
clearly describes the modes that take information from the standard
input and what kind of things are expected on the input.
[jc: stole example for fmt-merge-msg from Jonathan]
Helped-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2015-10-16 20:27:42 +02:00
|
|
|
'git show-index'
|
2005-07-14 09:08:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2018-05-28 11:39:23 +02:00
|
|
|
Read the `.idx` file for a Git packfile (created with
|
|
|
|
linkgit:git-pack-objects[1] or linkgit:git-index-pack[1]) from the
|
|
|
|
standard input, and dump its contents. The output consists of one object
|
|
|
|
per line, with each line containing two or three space-separated
|
|
|
|
columns:
|
2005-07-14 09:08:05 +02:00
|
|
|
|
2018-05-28 11:39:23 +02:00
|
|
|
- the first column is the offset in bytes of the object within the
|
|
|
|
corresponding packfile
|
|
|
|
|
|
|
|
- the second column is the object id of the object
|
|
|
|
|
|
|
|
- if the index version is 2 or higher, the third column contains the
|
|
|
|
CRC32 of the object data
|
|
|
|
|
|
|
|
The objects are output in the order in which they are found in the index
|
|
|
|
file, which should be (in a correctly constructed file) sorted by object
|
|
|
|
id.
|
|
|
|
|
|
|
|
Note that you can get more information on a packfile by calling
|
|
|
|
linkgit:git-verify-pack[1]. However, as this command considers only the
|
|
|
|
index file itself, it's both faster and more flexible.
|
2005-07-14 09:08:05 +02:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|