user-manual: clarify difference between tag and branch
[git/gitbuild.git] / Documentation / git-prune-packed.txt
bloba79193fb007bcaa8dc47b2763e4167a6f31a3dff
1 git-prune-packed(1)
2 =====================
4 NAME
5 ----
6 git-prune-packed - Program used to remove the extra object files that are now
7 residing in a pack file.
10 SYNOPSIS
11 --------
12 'git-prune-packed' [-n] [-q]
15 DESCRIPTION
16 -----------
17 This program search the `$GIT_OBJECT_DIR` for all objects that currently
18 exist in a pack file as well as the independent object directories.
20 All such extra objects are removed.
22 A pack is a collection of objects, individually compressed, with delta
23 compression applied, stored in a single file, with an associated index file.
25 Packs are used to reduce the load on mirror systems, backup engines,
26 disk storage, etc.
29 OPTIONS
30 -------
31 -n::
32         Don't actually remove any objects, only show those that would have been
33         removed.
35 -q::
36         Squelch the progress indicator.
38 Author
39 ------
40 Written by Linus Torvalds <torvalds@osdl.org>
42 Documentation
43 --------------
44 Documentation by Ryan Anderson <ryan@michonline.com>
46 See Also
47 --------
48 gitlink:git-pack-objects[1]
49 gitlink:git-repack[1]
51 GIT
52 ---
53 Part of the gitlink:git[7] suite