X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=git-lost-found.sh;h=0b3e8c7a8652478a7dd3d629fde9240cac6d6e2b;hb=7e7db5e4520388d3a6f1efbe2f7a29d43bd06a2b;hp=58570dff137adfdeb72ebf3f088af7379eded522;hpb=07c785dbb799ce7fa74686e776cd07d69c3ce01e;p=git.git diff --git a/git-lost-found.sh b/git-lost-found.sh index 58570dff1..0b3e8c7a8 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 -q --verify "$sha1^0" >/dev/null then dir="$laf/commit" - git-show-branch "$sha1" + git show-branch "$sha1" else dir="$laf/other" fi