2005-08-16 00:48:47 +02:00
|
|
|
git-prune-packed(1)
|
2014-10-12 01:37:33 +02:00
|
|
|
===================
|
2005-08-16 00:48:47 +02:00
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 00:53:37 +01:00
|
|
|
git-prune-packed - Remove extra objects that are already in pack files
|
2005-08-16 00:48:47 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 04:38:26 +02:00
|
|
|
[verse]
|
2009-07-08 07:15:41 +02:00
|
|
|
'git prune-packed' [-n|--dry-run] [-q|--quiet]
|
2005-12-06 06:13:03 +01:00
|
|
|
|
2005-08-16 00:48:47 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2013-09-23 21:19:19 +02:00
|
|
|
This program searches the `$GIT_OBJECT_DIRECTORY` for all objects that currently
|
2005-12-06 06:13:03 +01:00
|
|
|
exist in a pack file as well as the independent object directories.
|
2005-08-16 00:48:47 +02: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 06:13:03 +01:00
|
|
|
Packs are used to reduce the load on mirror systems, backup engines,
|
|
|
|
disk storage, etc.
|
|
|
|
|
2005-08-16 00:48:47 +02:00
|
|
|
|
2005-11-15 00:20:01 +01:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
-n::
|
2009-07-08 07:15:41 +02:00
|
|
|
--dry-run::
|
2005-11-15 00:20:01 +01:00
|
|
|
Don't actually remove any objects, only show those that would have been
|
|
|
|
removed.
|
|
|
|
|
2007-01-13 00:00:13 +01:00
|
|
|
-q::
|
2009-07-08 07:15:41 +02:00
|
|
|
--quiet::
|
2007-01-13 00:00:13 +01:00
|
|
|
Squelch the progress indicator.
|
|
|
|
|
2008-05-29 01:55:27 +02:00
|
|
|
SEE ALSO
|
2005-08-16 00:48:47 +02:00
|
|
|
--------
|
2007-12-29 07:20:38 +01:00
|
|
|
linkgit:git-pack-objects[1]
|
|
|
|
linkgit:git-repack[1]
|
2005-08-16 00:48:47 +02:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|