Add documentation for git-pack-intersect
[git.git] / Documentation / git-pack-intersect.txt
1 git-pack-intersect(1)
2 =====================
3
4 NAME
5 ----
6 git-pack-intersect - Program used to find redundant pack files.
7
8
9 SYNOPSIS
10 --------
11 'git-pack-intersect [ -v ] < -a | .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 -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
30 Author
31 ------
32 Written by Lukas Sandström <lukass@etek.chalmers.se>
33
34 Documentation
35 --------------
36 Documentation by Lukas Sandström <lukass@etek.chalmers.se>
37
38 See-Also
39 --------
40 gitlink:git-pack-objects[1]
41 gitlink:git-repack[1]
42 gitlink:git-prune-packed[1]
43
44 GIT
45 ---
46 Part of the gitlink:git[7] suite
47