X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=git-lost-found.sh;h=9cedaf80ceac1d4100adf3cfb152c76c7f945e4d;hb=6e13921b4f7adcc7316a76c0c4955b85b1589a65;hp=2beec2aa635d2876482294a162923a1dfd1572f6;hpb=423325a2d24638ddcc82ce47be5e40be550f4507;p=git.git diff --git a/git-lost-found.sh b/git-lost-found.sh index 2beec2aa6..9cedaf80c 100755 --- a/git-lost-found.sh +++ b/git-lost-found.sh @@ -1,18 +1,29 @@ #!/bin/sh -GIT_DIR=`git-rev-parse --git-dir` || exit $? +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 +fi + laf="$GIT_DIR/lost-found" rm -fr "$laf" && mkdir -p "$laf/commit" "$laf/other" || exit -git fsck-objects | +git fsck --full --no-reflogs | 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