1GIT-SHOW-INDEX(1)                 Git Manual                 GIT-SHOW-INDEX(1)
2
3
4

NAME

6       git-show-index - Show packed archive index
7

SYNOPSIS

9       git show-index
10
11

DESCRIPTION

13       Read the .idx file for a Git packfile (created with git-pack-objects(1)
14       or git-index-pack(1)) from the standard input, and dump its contents.
15       The output consists of one object per line, with each line containing
16       two or three space-separated columns:
17
18       ·   the first column is the offset in bytes of the object within the
19           corresponding packfile
20
21       ·   the second column is the object id of the object
22
23       ·   if the index version is 2 or higher, the third column contains the
24           CRC32 of the object data
25
26       The objects are output in the order in which they are found in the
27       index file, which should be (in a correctly constructed file) sorted by
28       object id.
29
30       Note that you can get more information on a packfile by calling git-
31       verify-pack(1). However, as this command considers only the index file
32       itself, it’s both faster and more flexible.
33

GIT

35       Part of the git(1) suite
36
37
38
39Git 2.24.1                        12/10/2019                 GIT-SHOW-INDEX(1)
Impressum