blob: b5f26cee132622185457d92522fb932302dec97d [file] [log] [blame]
Junio C Hamano1a4e8412005-12-27 08:17:231git-prune-packed(1)
2=====================
3
4NAME
5----
Junio C Hamano7c73c662007-01-19 00:37:506git-prune-packed - Remove extra objects that are already in pack files
Junio C Hamano1a4e8412005-12-27 08:17:237
8
9SYNOPSIS
10--------
Junio C Hamanofce7c7e2008-07-02 03:06:3811'git prune-packed' [-n] [-q]
Junio C Hamano1a4e8412005-12-27 08:17:2312
13
14DESCRIPTION
15-----------
Junio C Hamano9810d632007-09-24 01:05:3416This program searches the `$GIT_OBJECT_DIR` for all objects that currently
Junio C Hamano1a4e8412005-12-27 08:17:2317exist in a pack file as well as the independent object directories.
18
19All such extra objects are removed.
20
21A pack is a collection of objects, individually compressed, with delta
22compression applied, stored in a single file, with an associated index file.
23
24Packs are used to reduce the load on mirror systems, backup engines,
25disk storage, etc.
26
27
28OPTIONS
29-------
30-n::
31 Don't actually remove any objects, only show those that would have been
32 removed.
33
Junio C Hamano24351a82007-01-13 08:09:1734-q::
35Squelch the progress indicator.
36
Junio C Hamano1a4e8412005-12-27 08:17:2337Author
38------
39Written by Linus Torvalds <torvalds@osdl.org>
40
41Documentation
42--------------
43Documentation by Ryan Anderson <ryan@michonline.com>
44
Junio C Hamano9049d912008-05-29 02:09:5045SEE ALSO
Junio C Hamano1a4e8412005-12-27 08:17:2346--------
Junio C Hamano35738e82008-01-07 07:55:4647linkgit:git-pack-objects[1]
48linkgit:git-repack[1]
Junio C Hamano1a4e8412005-12-27 08:17:2349
50GIT
51---
Junio C Hamanof7c042d2008-06-06 22:50:5352Part of the linkgit:git[1] suite