Documentation / git-verify-pack.txton commit Refuse to create funny refs in clone-pack, git-fetch and receive-pack. (48bc2fb)
   1git-verify-pack(1)
   2==================
   3v0.1, June 2005
   4
   5NAME
   6----
   7git-verify-pack - Validate packed GIT archive files.
   8
   9
  10SYNOPSIS
  11--------
  12'git-verify-pack' [-v] <pack>.idx ...
  13
  14
  15DESCRIPTION
  16-----------
  17Reads given idx file for packed GIT archive created with
  18git-pack-objects command and verifies idx file and the
  19corresponding pack file.
  20
  21OPTIONS
  22-------
  23<pack>.idx ...::
  24        The idx files to verify.
  25
  26-v::
  27        After verifying the pack, show list of objects contained
  28        in the pack.
  29
  30OUTPUT FORMAT
  31-------------
  32When specifying the -v option the format used is:
  33
  34        SHA1 type size offset-in-packfile
  35
  36for objects that are not deltified in the pack, and
  37
  38        SHA1 type size offset-in-packfile depth base-SHA1
  39
  40for objects that are deltified.
  41
  42Author
  43------
  44Written by Junio C Hamano <junkio@cox.net>
  45
  46Documentation
  47--------------
  48Documentation by Junio C Hamano
  49
  50GIT
  51---
  52Part of the gitlink:git[7] suite
  53