X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=git-lost-found.sh;h=9cedaf80ceac1d4100adf3cfb152c76c7f945e4d;hb=b2b3ada7fc46f6e43f065718cd64940811cd50b3;hp=58570dff137adfdeb72ebf3f088af7379eded522;hpb=1b2782a5e2f88bf5e6e2cbb58e54fea015e21af5;p=git.git diff --git a/git-lost-found.sh b/git-lost-found.sh index 58570dff1..9cedaf80c 100755 --- a/git-lost-found.sh +++ b/git-lost-found.sh @@ -2,8 +2,11 @@ USAGE='' SUBDIRECTORY_OK='Yes' +OPTIONS_SPEC= . git-sh-setup +echo "WARNING: '$0' is deprecated in favor of 'git fsck --lost-found'" >&2 + if [ "$#" != "0" ] then usage @@ -17,10 +20,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