Make 'diff_populate_filespec()' use the new 'strbuf_readlink()'
[git/dscho.git] / Documentation / git-prune-packed.txt
blobb5f26cee132622185457d92522fb932302dec97d
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 linkgit:git-pack-objects[1]
48 linkgit:git-repack[1]
50 GIT
51 ---
52 Part of the linkgit:git[1] suite