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
|
|
|
|
--------
|
2008-06-30 10:09:04 +04: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>
|
|
|
|
|
2008-05-29 03:55:27 +04:00
|
|
|
SEE ALSO
|
2005-08-16 02:48:47 +04:00
|
|
|
--------
|
2007-12-29 09:20:38 +03:00
|
|
|
linkgit:git-pack-objects[1]
|
|
|
|
linkgit:git-repack[1]
|
2005-08-16 02:48:47 +04:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 11:07:32 +04:00
|
|
|
Part of the linkgit:git[1] suite
|