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 [ --verbose ] [ --alt-odb ] < --all | .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 23--all:: 24 Processes all packs. Any filenames on the commandline are ignored. 25 26--alt-odb:: 27 Don't require objects present in packs from alternate object 28 directories to be present in local packs. 29 30--verbose:: 31 Outputs some statistics to stderr. Has a small performance penalty. 32 33Author 34------ 35Written by Lukas Sandström <lukass@etek.chalmers.se> 36 37Documentation 38-------------- 39Documentation by Lukas Sandström <lukass@etek.chalmers.se> 40 41See-Also 42-------- 43gitlink:git-pack-objects[1] 44gitlink:git-repack[1] 45gitlink:git-prune-packed[1] 46 47GIT 48--- 49Part of the gitlink:git[7] suite 50