]> git.ipfire.org Git - thirdparty/git.git/blob - Documentation/git-prune-packed.txt
Documentation: be consistent about "git-" versus "git "
[thirdparty/git.git] / Documentation / git-prune-packed.txt
1 git-prune-packed(1)
2 =====================
3
4 NAME
5 ----
6 git-prune-packed - Remove extra objects that are already in pack files
7
8
9 SYNOPSIS
10 --------
11 'git prune-packed' [-n] [-q]
12
13
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.
18
19 All such extra objects are removed.
20
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.
23
24 Packs are used to reduce the load on mirror systems, backup engines,
25 disk storage, etc.
26
27
28 OPTIONS
29 -------
30 -n::
31 Don't actually remove any objects, only show those that would have been
32 removed.
33
34 -q::
35 Squelch the progress indicator.
36
37 Author
38 ------
39 Written by Linus Torvalds <torvalds@osdl.org>
40
41 Documentation
42 --------------
43 Documentation by Ryan Anderson <ryan@michonline.com>
44
45 SEE ALSO
46 --------
47 linkgit:git-pack-objects[1]
48 linkgit:git-repack[1]
49
50 GIT
51 ---
52 Part of the linkgit:git[1] suite