blob: f5fcc98667ca866e2b80168edb58d9728b337908 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
// Command explain-pack reads a Git packfile and writes a
// human-readable explanation to stdout.
//
// With a pack filename argument
// the pack is mmap'd
// and a sibling .idx is used when present;
// with no argument the pack is read from stdin.
// A packfile does not record its object format,
// so the format must be given with -format.
package main
|