diff options
author | Junio C Hamano <junkio@cox.net> | 2005-11-11 10:41:53 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-11-11 21:19:11 -0800 |
commit | d7b1a1ddbece22c99d52ea45bdecefdb9f17a613 (patch) | |
tree | 4ee27c9e30c7fa9a5b022f126ee93968df777b06 /git-prune.sh | |
parent | 1c3039e8f1eb01766cff976793c8f439095967f6 (diff) | |
download | git-d7b1a1ddbece22c99d52ea45bdecefdb9f17a613.tar.gz git-d7b1a1ddbece22c99d52ea45bdecefdb9f17a613.tar.xz |
git-prune: prune redundant packs
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-prune.sh')
-rwxr-xr-x | git-prune.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/git-prune.sh b/git-prune.sh index ef31bd2a6..aa7980731 100755 --- a/git-prune.sh +++ b/git-prune.sh @@ -27,3 +27,14 @@ sed -ne '/unreachable /{ } git-prune-packed $dryrun + +redundant=$(git-pack-redundant --all) +if test "" != "$redundant" +then + if test "" = $dryrun + then + echo "$redundant" | xargs rm -f + else + echo rm -f "$redundant" + fi +fi |