diff options
author | Junio C Hamano <junkio@cox.net> | 2006-07-27 22:15:01 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-27 22:15:01 -0700 |
commit | 5f468c4805c785115cd9c5f6a8f299f23a9034f5 (patch) | |
tree | c5f2b1dffc3158662fc142cd82937b2aee28164f /git-lost-found.sh | |
parent | c2c487cf3a6c37bc9b4e3f0e10ad08d9ce048404 (diff) | |
download | git-5f468c4805c785115cd9c5f6a8f299f23a9034f5.tar.gz |
lost-found: use fsck-objects --full
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-lost-found.sh')
-rwxr-xr-x | git-lost-found.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-lost-found.sh b/git-lost-found.sh index ba6d587f31..b928f2ca52 100755 --- a/git-lost-found.sh +++ b/git-lost-found.sh @@ -12,7 +12,7 @@ fi laf="$GIT_DIR/lost-found" rm -fr "$laf" && mkdir -p "$laf/commit" "$laf/other" || exit -git fsck-objects | +git fsck-objects --full | while read dangling type sha1 do case "$dangling" in |