X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=git-lost-found.sh;h=f2ec5d147a56136b8c3aff8b693912a7c792da63;hb=4d1012c3709e356107d0fb0e3bf5a39e0d5c209d;hp=3892f52005d1e36676681806a87ef35dc0689f22;hpb=8fc66df237afce0b4318657f166b3583831949f3;p=git.git diff --git a/git-lost-found.sh b/git-lost-found.sh index 3892f5200..f2ec5d147 100755 --- a/git-lost-found.sh +++ b/git-lost-found.sh @@ -1,19 +1,28 @@ #!/bin/sh -. git-sh-setup || die "Not a git archive." +USAGE='' +SUBDIRECTORY_OK='Yes' +. 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