Documentation / git-count-objects.txton commit mergetool: Add a test for running mergetool in a sub-directory (b9b5078)
   1git-count-objects(1)
   2====================
   3
   4NAME
   5----
   6git-count-objects - Count unpacked number of objects and their disk consumption
   7
   8SYNOPSIS
   9--------
  10'git count-objects' [-v]
  11
  12DESCRIPTION
  13-----------
  14This counts the number of unpacked object files and disk space consumed by
  15them, to help you decide when it is a good time to repack.
  16
  17
  18OPTIONS
  19-------
  20-v::
  21--verbose::
  22        In addition to the number of loose objects and disk
  23        space consumed, it reports the number of in-pack
  24        objects, number of packs, disk space consumed by those packs,
  25        and number of objects that can be removed by running
  26        `git prune-packed`.
  27
  28
  29Author
  30------
  31Written by Junio C Hamano <gitster@pobox.com>
  32
  33Documentation
  34--------------
  35Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
  36
  37GIT
  38---
  39Part of the linkgit:git[1] suite