Skip excessive blank lines before commit body
[git/dscho.git] / Documentation / git-prune-packed.txt
blob234882685d923d632c4e09a38cb9ba18439dda4a
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]
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 Author
36 ------
37 Written by Linus Torvalds <torvalds@osdl.org>
39 Documentation
40 --------------
41 Documentation by Ryan Anderson <ryan@michonline.com>
43 See Also
44 --------
45 gitlink:git-pack-objects[1]
46 gitlink:git-repack[1]
48 GIT
49 ---
50 Part of the gitlink:git[7] suite