]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-prune-packed.txt
format-patch/commit: Quote single quote in the author name properly.
[thirdparty/git.git] / Documentation / git-prune-packed.txt
CommitLineData
e31bb3bb
JH
1git-prune-packed(1)
2=====================
e31bb3bb
JH
3
4NAME
5----
6git-prune-packed - Program used to remove the extra object files that are now
7residing in a pack file.
8
9
10SYNOPSIS
11--------
61f693bd
JL
12'git-prune-packed' [-n]
13
e31bb3bb
JH
14
15DESCRIPTION
16-----------
61f693bd
JL
17This program search the `$GIT_OBJECT_DIR` for all objects that currently
18exist in a pack file as well as the independent object directories.
e31bb3bb
JH
19
20All such extra objects are removed.
21
22A pack is a collection of objects, individually compressed, with delta
23compression applied, stored in a single file, with an associated index file.
24
61f693bd
JL
25Packs are used to reduce the load on mirror systems, backup engines,
26disk storage, etc.
27
e31bb3bb 28
2db0bfbc
NW
29OPTIONS
30-------
31-n::
32 Don't actually remove any objects, only show those that would have been
33 removed.
34
e31bb3bb
JH
35Author
36------
37Written by Linus Torvalds <torvalds@osdl.org>
38
39Documentation
40--------------
41Documentation by Ryan Anderson <ryan@michonline.com>
42
43See-Also
44--------
df8baa42
JF
45gitlink:git-pack-objects[1]
46gitlink:git-repack[1]
e31bb3bb
JH
47
48GIT
49---
a7154e91 50Part of the gitlink:git[7] suite
e31bb3bb 51