Staging
v0.5.2
https://github.com/git/git
Revision 29f049a0c277be72637f74f1f90a89dccd3475bc authored by Junio C Hamano on 15 October 2006, 06:37:41 UTC, committed by Junio C Hamano on 15 October 2006, 06:38:01 UTC
This reverts commit 16854571aae6302f457c5fbee41ac64669b09595.
Git as recent as v1.1.6 do not understand version 3 delta.

v1.2.0 is Ok and I personally would say it is old enough, but
the improvement between version 2 and version 3 delta is not
bit enough to justify breaking older clients.

We should resurrect this later, but when we do so we shold
make it conditional.

Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 0a24657
Raw File
Tip revision: 29f049a0c277be72637f74f1f90a89dccd3475bc authored by Junio C Hamano on 15 October 2006, 06:37:41 UTC
Revert "move pack creation to version 3"
Tip revision: 29f049a
git-lost-found.sh
#!/bin/sh

USAGE=''
SUBDIRECTORY_OK='Yes'
. git-sh-setup

if [ "$#" != "0" ]
then
    usage
fi

laf="$GIT_DIR/lost-found"
rm -fr "$laf" && mkdir -p "$laf/commit" "$laf/other" || exit

git fsck-objects --full |
while read dangling type sha1
do
	case "$dangling" in
	dangling)
		if git-rev-parse --verify "$sha1^0" >/dev/null 2>/dev/null
		then
			dir="$laf/commit"
			git-show-branch "$sha1"
		else
			dir="$laf/other"
		fi
		echo "$sha1" >"$dir/$sha1"
		;;
	esac
done
back to top