2005-08-15 22:48:47 +00:00
|
|
|
git-prune-packed(1)
|
|
|
|
=====================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-18 23:53:37 +00:00
|
|
|
git-prune-packed - Remove extra objects that are already in pack files
|
2005-08-15 22:48:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2009-07-08 05:15:41 +00:00
|
|
|
'git prune-packed' [-n|--dry-run] [-q|--quiet]
|
2005-12-06 05:13:03 +00:00
|
|
|
|
2005-08-15 22:48:47 +00:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2007-09-21 14:37:18 +00:00
|
|
|
This program searches the `$GIT_OBJECT_DIR` for all objects that currently
|
2005-12-06 05:13:03 +00:00
|
|
|
exist in a pack file as well as the independent object directories.
|
2005-08-15 22:48:47 +00:00
|
|
|
|
|
|
|
All such extra objects are removed.
|
|
|
|
|
|
|
|
A pack is a collection of objects, individually compressed, with delta
|
|
|
|
compression applied, stored in a single file, with an associated index file.
|
|
|
|
|
2005-12-06 05:13:03 +00:00
|
|
|
Packs are used to reduce the load on mirror systems, backup engines,
|
|
|
|
disk storage, etc.
|
|
|
|
|
2005-08-15 22:48:47 +00:00
|
|
|
|
2005-11-14 23:20:01 +00:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
-n::
|
2009-07-08 05:15:41 +00:00
|
|
|
--dry-run::
|
2005-11-14 23:20:01 +00:00
|
|
|
Don't actually remove any objects, only show those that would have been
|
|
|
|
removed.
|
|
|
|
|
2007-01-12 23:00:13 +00:00
|
|
|
-q::
|
2009-07-08 05:15:41 +00:00
|
|
|
--quiet::
|
2007-01-12 23:00:13 +00:00
|
|
|
Squelch the progress indicator.
|
|
|
|
|
2005-08-15 22:48:47 +00:00
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Linus Torvalds <torvalds@osdl.org>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Ryan Anderson <ryan@michonline.com>
|
|
|
|
|
2008-05-28 23:55:27 +00:00
|
|
|
SEE ALSO
|
2005-08-15 22:48:47 +00:00
|
|
|
--------
|
2007-12-29 06:20:38 +00:00
|
|
|
linkgit:git-pack-objects[1]
|
|
|
|
linkgit:git-repack[1]
|
2005-08-15 22:48:47 +00:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 07:07:32 +00:00
|
|
|
Part of the linkgit:git[1] suite
|