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