LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

git-show-index

Dump pack index file contents

TLDR

Show pack index contents
$ git show-index < [.idx file]
copy

SYNOPSIS

git show-index < indexfile_

DESCRIPTION

git show-index reads a pack index file from stdin and dumps its contents. It displays the byte offset and SHA-1 hash for each object in the corresponding pack file.This is a low-level plumbing command used for debugging and inspecting Git's internal pack file structure.

INSTALL

sudo apt install git
copy
sudo dnf install git
copy
sudo pacman -S git
copy
sudo apk add git
copy
sudo zypper install git
copy
brew install git
copy
nix profile install nixpkgs#git
copy

SEE ALSO

Copied to clipboard
Kai