transport-helper: change import semantics
[git/dscho.git] / Documentation / git-prune-packed.txt
blob9e6202cdffd01fc685a78d1bd2c56128a8b8b73a
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|--dry-run] [-q|--quiet]
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 --dry-run::
32         Don't actually remove any objects, only show those that would have been
33         removed.
35 -q::
36 --quiet::
37         Squelch the progress indicator.
39 SEE ALSO
40 --------
41 linkgit:git-pack-objects[1]
42 linkgit:git-repack[1]
44 GIT
45 ---
46 Part of the linkgit:git[1] suite