Use diff* with --exit-code in git-am, git-rebase and git-merge-ours
[git/gitster.git] / git-lost-found.sh
blob9360804711d6b81983e53df67c86ddc8082e2ab4
1 #!/bin/sh
3 USAGE=''
4 SUBDIRECTORY_OK='Yes'
5 . git-sh-setup
7 if [ "$#" != "0" ]
8 then
9 usage
12 laf="$GIT_DIR/lost-found"
13 rm -fr "$laf" && mkdir -p "$laf/commit" "$laf/other" || exit
15 git fsck --full |
16 while read dangling type sha1
18 case "$dangling" in
19 dangling)
20 if git-rev-parse --verify "$sha1^0" >/dev/null 2>/dev/null
21 then
22 dir="$laf/commit"
23 git-show-branch "$sha1"
24 else
25 dir="$laf/other"
27 echo "$sha1" >"$dir/$sha1"
29 esac
30 done