Make git-pack-redundant consider alt-odbs
[git.git] / Documentation / git-pack-redundant.txt
1 git-pack-redundant(1)
2 =====================
3
4 NAME
5 ----
6 git-pack-redundant - Program used to find redundant pack files.
7
8
9 SYNOPSIS
10 --------
11 'git-pack-redundant [ --verbose ] [ --alt-odb ] < --all | .pack filename ... >'
12
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.
18
19 OPTIONS
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
33 Author
34 ------
35 Written by Lukas Sandström <lukass@etek.chalmers.se>
36
37 Documentation
38 --------------
39 Documentation by Lukas Sandström <lukass@etek.chalmers.se>
40
41 See-Also
42 --------
43 gitlink:git-pack-objects[1]
44 gitlink:git-repack[1]
45 gitlink:git-prune-packed[1]
46
47 GIT
48 ---
49 Part of the gitlink:git[7] suite
50