2005-11-08 00:15:34 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2005-12-13 23:30:31 +01:00
|
|
|
USAGE=''
|
|
|
|
SUBDIRECTORY_OK='Yes'
|
2007-11-06 10:50:02 +01:00
|
|
|
OPTIONS_SPEC=
|
2005-12-13 23:30:31 +01:00
|
|
|
. git-sh-setup
|
|
|
|
|
2007-11-08 01:41:22 +01:00
|
|
|
echo "WARNING: '$0' is deprecated in favor of 'git fsck --lost-found'" >&2
|
|
|
|
|
2005-12-13 23:30:31 +01:00
|
|
|
if [ "$#" != "0" ]
|
|
|
|
then
|
|
|
|
usage
|
|
|
|
fi
|
|
|
|
|
2005-11-11 04:16:26 +01:00
|
|
|
laf="$GIT_DIR/lost-found"
|
2005-11-08 00:15:34 +01:00
|
|
|
rm -fr "$laf" && mkdir -p "$laf/commit" "$laf/other" || exit
|
|
|
|
|
2007-04-04 16:46:14 +02:00
|
|
|
git fsck --full --no-reflogs |
|
2005-11-08 00:15:34 +01:00
|
|
|
while read dangling type sha1
|
|
|
|
do
|
|
|
|
case "$dangling" in
|
|
|
|
dangling)
|
2007-07-03 07:52:14 +02:00
|
|
|
if git rev-parse --verify "$sha1^0" >/dev/null 2>/dev/null
|
2005-11-08 00:15:34 +01:00
|
|
|
then
|
|
|
|
dir="$laf/commit"
|
2007-07-03 07:52:14 +02:00
|
|
|
git show-branch "$sha1"
|
2005-11-08 00:15:34 +01:00
|
|
|
else
|
|
|
|
dir="$laf/other"
|
|
|
|
fi
|
|
|
|
echo "$sha1" >"$dir/$sha1"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|