git-tar-tree: no more void pointer arithmetic
[git.git] / Documentation / git-prune-packed.txt
1 git-prune-packed(1)
2 =====================
3
4 NAME
5 ----
6 git-prune-packed - Program used to remove the extra object files that are now
7 residing in a pack file.
8
9
10 SYNOPSIS
11 --------
12 'git-prune-packed' [-n]
13
14
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.
19
20 All such extra objects are removed.
21
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.
24
25 Packs are used to reduce the load on mirror systems, backup engines,
26 disk storage, etc.
27
28
29 OPTIONS
30 -------
31 -n::
32         Don't actually remove any objects, only show those that would have been
33         removed.
34
35 Author
36 ------
37 Written by Linus Torvalds <torvalds@osdl.org>
38
39 Documentation
40 --------------
41 Documentation by Ryan Anderson <ryan@michonline.com>
42
43 See Also
44 --------
45 gitlink:git-pack-objects[1]
46 gitlink:git-repack[1]
47
48 GIT
49 ---
50 Part of the gitlink:git[7] suite
51