Conjugate "search" correctly in the git-prune-packed man page.
[git/dscho.git] / Documentation / git-prune-packed.txt
blob9f85f3833ebc78b1de7981c5048330357a513f0e
1 git-prune-packed(1)
2 =====================
4 NAME
5 ----
6 git-prune-packed - Remove extra objects that are already in pack files
9 SYNOPSIS
10 --------
11 'git-prune-packed' [-n] [-q]
14 DESCRIPTION
15 -----------
16 This program searches the `$GIT_OBJECT_DIR` for all objects that currently
17 exist in a pack file as well as the independent object directories.
19 All such extra objects are removed.
21 A pack is a collection of objects, individually compressed, with delta
22 compression applied, stored in a single file, with an associated index file.
24 Packs are used to reduce the load on mirror systems, backup engines,
25 disk storage, etc.
28 OPTIONS
29 -------
30 -n::
31         Don't actually remove any objects, only show those that would have been
32         removed.
34 -q::
35         Squelch the progress indicator.
37 Author
38 ------
39 Written by Linus Torvalds <torvalds@osdl.org>
41 Documentation
42 --------------
43 Documentation by Ryan Anderson <ryan@michonline.com>
45 See Also
46 --------
47 gitlink:git-pack-objects[1]
48 gitlink:git-repack[1]
50 GIT
51 ---
52 Part of the gitlink:git[7] suite