Code

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