diff options
author | Junio C Hamano <junkio@cox.net> | 2006-07-12 22:31:55 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-12 22:31:55 -0700 |
commit | 3939b805f4147a97c08cc50ef7e53cd6c2490c5c (patch) | |
tree | 05b3f8256e5cda3d52f6d2053baab7a18095570a /git-prune.sh | |
parent | 096b1732343305b7096b1085c23eba8cd83569c7 (diff) | |
parent | ba84a797e76c27932e0b317c7ce54925e81093f7 (diff) | |
download | git-3939b805f4147a97c08cc50ef7e53cd6c2490c5c.tar.gz git-3939b805f4147a97c08cc50ef7e53cd6c2490c5c.tar.xz |
Merge branch 'lt/prune'
* lt/prune:
builtin "git prune"
Diffstat (limited to 'git-prune.sh')
-rwxr-xr-x | git-prune.sh | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/git-prune.sh b/git-prune.sh deleted file mode 100755 index c5a5d29aa..000000000 --- a/git-prune.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!/bin/sh - -USAGE='[-n] [--] [<head>...]' -. git-sh-setup - -dryrun= -echo= -while case "$#" in 0) break ;; esac -do - case "$1" in - -n) dryrun=-n echo=echo ;; - --) break ;; - -*) usage ;; - *) break ;; - esac - shift; -done - -sync -case "$#" in -0) git-fsck-objects --full --cache --unreachable ;; -*) git-fsck-objects --full --cache --unreachable $(git-rev-parse --all) "$@" ;; -esac | - -sed -ne '/unreachable /{ - s/unreachable [^ ][^ ]* // - s|\(..\)|\1/|p -}' | { - cd "$GIT_OBJECT_DIRECTORY" || exit - xargs $echo rm -f - rmdir 2>/dev/null [0-9a-f][0-9a-f] -} - -git-prune-packed $dryrun - -if redundant=$(git-pack-redundant --all 2>/dev/null) && test "" != "$redundant" -then - if test "" = "$dryrun" - then - echo "$redundant" | xargs rm -f - else - echo rm -f "$redundant" - fi -fi |