Staging
v0.5.1
https://github.com/git/git
Revision b86bec6c4ff7909246e68a4495dcaaeede3907e9 authored by Junio C Hamano on 08 June 2006, 03:16:30 UTC, committed by Junio C Hamano on 08 June 2006, 03:19:00 UTC
Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 99b41c8
Raw File
Tip revision: b86bec6c4ff7909246e68a4495dcaaeede3907e9 authored by Junio C Hamano on 08 June 2006, 03:16:30 UTC
Documentation: add another example to git-ls-files
Tip revision: b86bec6
git-prune.sh
#!/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
back to top