Documentation / git-verify-pack.txton commit mergetool: Add a test for running mergetool in a sub-directory (b9b5078)
   1git-verify-pack(1)
   2==================
   3
   4NAME
   5----
   6git-verify-pack - Validate packed git archive files
   7
   8
   9SYNOPSIS
  10--------
  11'git verify-pack' [-v] [--] <pack>.idx ...
  12
  13
  14DESCRIPTION
  15-----------
  16Reads given idx file for packed git archive created with the
  17'git-pack-objects' command and verifies idx file and the
  18corresponding pack file.
  19
  20OPTIONS
  21-------
  22<pack>.idx ...::
  23        The idx files to verify.
  24
  25-v::
  26        After verifying the pack, show list of objects contained
  27        in the pack.
  28\--::
  29        Do not interpret any more arguments as options.
  30
  31OUTPUT FORMAT
  32-------------
  33When specifying the -v option the format used is:
  34
  35        SHA1 type size size-in-pack-file offset-in-packfile
  36
  37for objects that are not deltified in the pack, and
  38
  39        SHA1 type size size-in-packfile offset-in-packfile depth base-SHA1
  40
  41for objects that are deltified.
  42
  43Author
  44------
  45Written by Junio C Hamano <gitster@pobox.com>
  46
  47Documentation
  48--------------
  49Documentation by Junio C Hamano
  50
  51GIT
  52---
  53Part of the linkgit:git[1] suite