You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
420 B
24 lines
420 B
19 years ago
|
#!/bin/sh
|
||
|
|
||
|
. git-sh-setup || die "Not a git archive."
|
||
|
|
||
19 years ago
|
laf="$GIT_DIR/lost-found"
|
||
19 years ago
|
rm -fr "$laf" && mkdir -p "$laf/commit" "$laf/other" || exit
|
||
|
|
||
|
git fsck-objects |
|
||
|
while read dangling type sha1
|
||
|
do
|
||
|
case "$dangling" in
|
||
|
dangling)
|
||
|
if git-rev-parse --verify "$sha1^0" >/dev/null 2>/dev/null
|
||
|
then
|
||
|
dir="$laf/commit"
|
||
|
git-show-branch "$sha1"
|
||
|
else
|
||
|
dir="$laf/other"
|
||
|
fi
|
||
|
echo "$sha1" >"$dir/$sha1"
|
||
|
;;
|
||
|
esac
|
||
|
done
|