X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=git-lost-found.sh;h=f2ec5d147a56136b8c3aff8b693912a7c792da63;hb=60f3ff12573e411476f7a32ab13bbb9b8063c8f7;hp=58570dff137adfdeb72ebf3f088af7379eded522;hpb=43d151a1b087db22e2f9a754772b469de1194f67;p=git.git diff --git a/git-lost-found.sh b/git-lost-found.sh index 58570dff1..f2ec5d147 100755 --- a/git-lost-found.sh +++ b/git-lost-found.sh @@ -4,6 +4,8 @@ USAGE='' SUBDIRECTORY_OK='Yes' . git-sh-setup +echo "WARNING: '$0' is deprecated in favor of 'git fsck --lost-found'" >&2 + if [ "$#" != "0" ] then usage @@ -17,10 +19,10 @@ while read dangling type sha1 do case "$dangling" in dangling) - if git-rev-parse --verify "$sha1^0" >/dev/null 2>/dev/null + if git rev-parse --verify "$sha1^0" >/dev/null 2>/dev/null then dir="$laf/commit" - git-show-branch "$sha1" + git show-branch "$sha1" else dir="$laf/other" fi