Documentation / git-pack-redundant.txton commit Rename git-pack-intersect to git-pack-redundant (9bc0f32)
   1git-pack-redundant(1)
   2=====================
   3
   4NAME
   5----
   6git-pack-redundant - Program used to find redundant pack files.
   7
   8
   9SYNOPSIS
  10--------
  11'git-pack-redundant [ -v ] < -a | .pack filename ... >'
  12
  13DESCRIPTION
  14-----------
  15This program computes which packs in your repository
  16are redundant. The output is suitable for piping to
  17'xargs rm' if you are in the root of the repository.
  18
  19OPTIONS
  20-------
  21
  22-v::
  23        Verbose. Outputs some statistics to stderr.
  24        Has a small performance penalty.
  25
  26-a::
  27        All. Processes all the local packs. Any filenames on
  28        the commandline are ignored.
  29
  30Author
  31------
  32Written by Lukas Sandström <lukass@etek.chalmers.se>
  33
  34Documentation
  35--------------
  36Documentation by Lukas Sandström <lukass@etek.chalmers.se>
  37
  38See-Also
  39--------
  40gitlink:git-pack-objects[1]
  41gitlink:git-repack[1]
  42gitlink:git-prune-packed[1]
  43
  44GIT
  45---
  46Part of the gitlink:git[7] suite
  47