2005-08-16 02:48:47 +04:00
|
|
|
git-prune-packed(1)
|
|
|
|
=====================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 02:53:37 +03:00
|
|
|
git-prune-packed - Remove extra objects that are already in pack files
|
2005-08-16 02:48:47 +04:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2007-01-13 02:00:13 +03:00
|
|
|
'git-prune-packed' [-n] [-q]
|
2005-12-06 08:13:03 +03:00
|
|
|
|
2005-08-16 02:48:47 +04:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2007-09-21 18:37:18 +04:00
|
|
|
This program searches the `$GIT_OBJECT_DIR` for all objects that currently
|
2005-12-06 08:13:03 +03:00
|
|
|
exist in a pack file as well as the independent object directories.
|
2005-08-16 02:48:47 +04: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 08:13:03 +03:00
|
|
|
Packs are used to reduce the load on mirror systems, backup engines,
|
|
|
|
disk storage, etc.
|
|
|
|
|
2005-08-16 02:48:47 +04:00
|
|
|
|
2005-11-15 02:20:01 +03:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
-n::
|
|
|
|
Don't actually remove any objects, only show those that would have been
|
|
|
|
removed.
|
|
|
|
|
2007-01-13 02:00:13 +03:00
|
|
|
-q::
|
|
|
|
Squelch the progress indicator.
|
|
|
|
|
2005-08-16 02:48:47 +04:00
|
|
|
Author
|
|
|
|
------
|
|
|
|
Written by Linus Torvalds <torvalds@osdl.org>
|
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
|
|
|
Documentation by Ryan Anderson <ryan@michonline.com>
|
|
|
|
|
2006-03-05 09:20:07 +03:00
|
|
|
See Also
|
2005-08-16 02:48:47 +04:00
|
|
|
--------
|
2005-10-03 21:16:30 +04:00
|
|
|
gitlink:git-pack-objects[1]
|
|
|
|
gitlink:git-repack[1]
|
2005-08-16 02:48:47 +04:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2005-09-19 14:10:51 +04:00
|
|
|
Part of the gitlink:git[7] suite
|