2005-11-10 00:16:13 +01:00
|
|
|
git-pack-redundant(1)
|
2005-11-09 02:23:55 +01:00
|
|
|
=====================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2007-01-19 00:53:37 +01:00
|
|
|
git-pack-redundant - Find redundant pack files
|
2005-11-09 02:23:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2006-03-06 01:00:48 +01:00
|
|
|
'git-pack-redundant' [ --verbose ] [ --alt-odb ] < --all | .pack filename ... >
|
2005-11-09 02:23:55 +01:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
This program computes which packs in your repository
|
|
|
|
are redundant. The output is suitable for piping to
|
|
|
|
'xargs rm' if you are in the root of the repository.
|
|
|
|
|
2005-11-18 23:20:15 +01:00
|
|
|
git-pack-redundant accepts a list of objects on standard input. Any objects
|
2007-06-07 09:04:01 +02:00
|
|
|
given will be ignored when checking which packs are required. This makes the
|
2005-11-18 23:20:15 +01:00
|
|
|
following command useful when wanting to remove packs which contain unreachable
|
|
|
|
objects.
|
|
|
|
|
2007-01-29 01:33:58 +01:00
|
|
|
git-fsck --full --unreachable | cut -d ' ' -f3 | \
|
2005-11-18 23:20:15 +01:00
|
|
|
git-pack-redundant --all | xargs rm
|
|
|
|
|
2005-11-09 02:23:55 +01:00
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
|
|
|
|
|
2005-11-11 01:25:04 +01:00
|
|
|
--all::
|
2006-07-09 09:44:30 +02:00
|
|
|
Processes all packs. Any filenames on the command line are ignored.
|
2005-11-11 01:25:04 +01: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 02:23:55 +01:00
|
|
|
|
|
|
|
Author
|
|
|
|
------
|
2005-11-12 07:16:59 +01:00
|
|
|
Written by Lukas Sandström <lukass@etek.chalmers.se>
|
2005-11-09 02:23:55 +01:00
|
|
|
|
|
|
|
Documentation
|
|
|
|
--------------
|
2005-11-12 07:16:59 +01:00
|
|
|
Documentation by Lukas Sandström <lukass@etek.chalmers.se>
|
2005-11-09 02:23:55 +01:00
|
|
|
|
2006-03-05 07:20:07 +01:00
|
|
|
See Also
|
2005-11-09 02:23:55 +01:00
|
|
|
--------
|
2007-12-29 07:20:38 +01:00
|
|
|
linkgit:git-pack-objects[1]
|
|
|
|
linkgit:git-repack[1]
|
|
|
|
linkgit:git-prune-packed[1]
|
2005-11-09 02:23:55 +01:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2007-12-29 07:20:38 +01:00
|
|
|
Part of the linkgit:git[7] suite
|