2005-11-10 02:16:13 +03:00
|
|
|
git-pack-redundant(1)
|
2005-11-09 04:23:55 +03:00
|
|
|
=====================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 02:53:37 +03:00
|
|
|
git-pack-redundant - Find redundant pack files
|
2005-11-09 04:23:55 +03:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 06:38:26 +04:00
|
|
|
[verse]
|
2008-06-30 10:09:04 +04:00
|
|
|
'git pack-redundant' [ --verbose ] [ --alt-odb ] < --all | .pack filename ... >
|
2005-11-09 04:23:55 +03:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
This program computes which packs in your repository
|
|
|
|
are redundant. The output is suitable for piping to
|
2008-06-30 22:56:34 +04:00
|
|
|
`xargs rm` if you are in the root of the repository.
|
2005-11-09 04:23:55 +03:00
|
|
|
|
2010-01-10 02:33:00 +03:00
|
|
|
'git pack-redundant' accepts a list of objects on standard input. Any objects
|
2007-06-07 11:04:01 +04:00
|
|
|
given will be ignored when checking which packs are required. This makes the
|
2005-11-19 01:20:15 +03:00
|
|
|
following command useful when wanting to remove packs which contain unreachable
|
|
|
|
objects.
|
|
|
|
|
2008-06-30 10:09:04 +04:00
|
|
|
git fsck --full --unreachable | cut -d ' ' -f3 | \
|
|
|
|
git pack-redundant --all | xargs rm
|
2005-11-19 01:20:15 +03:00
|
|
|
|
2005-11-09 04:23:55 +03:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
|
|
|
|
|
2005-11-11 03:25:04 +03:00
|
|
|
--all::
|
2006-07-09 11:44:30 +04:00
|
|
|
Processes all packs. Any filenames on the command line are ignored.
|
2005-11-11 03:25:04 +03:00
|
|
|
|
|
|
|
--alt-odb::
|
|
|
|
Don't require objects present in packs from alternate object
|
|
|
|
directories to be present in local packs.
|
|
|
|
|
|
|
|
--verbose::
|
|
|
|
Outputs some statistics to stderr. Has a small performance penalty.
|
2005-11-09 04:23:55 +03:00
|
|
|
|
2008-05-29 03:55:27 +04:00
|
|
|
SEE ALSO
|
2005-11-09 04:23:55 +03:00
|
|
|
--------
|
2007-12-29 09:20:38 +03:00
|
|
|
linkgit:git-pack-objects[1]
|
|
|
|
linkgit:git-repack[1]
|
|
|
|
linkgit:git-prune-packed[1]
|
2005-11-09 04:23:55 +03:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 11:07:32 +04:00
|
|
|
Part of the linkgit:git[1] suite
|