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-VERSION-GEN
#!/bin/sh

GVF=GIT-VERSION-FILE
DEF_VER=v1.4.3.GIT

LF='
'

# First try git-describe, then see if there is a version file
# (included in release tarballs), then default
if VN=$(git describe --abbrev=4 HEAD 2>/dev/null) &&
   case "$VN" in
   *$LF*) (exit 1) ;;
   v[0-9]*) : happy ;;
   esac
then
	VN=$(echo "$VN" | sed -e 's/-/./g');
elif test -f version
then
	VN=$(cat version) || VN="$DEF_VER"
else
	VN="$DEF_VER"
fi

VN=$(expr "$VN" : v*'\(.*\)')

dirty=$(sh -c 'git diff-index --name-only HEAD' 2>/dev/null) || dirty=
case "$dirty" in
'')
	;;
*)
	VN="$VN-dirty" ;;
esac

if test -r $GVF
then
	VC=$(sed -e 's/^GIT_VERSION = //' <$GVF)
else
	VC=unset
fi
test "$VN" = "$VC" || {
	echo >&2 "GIT_VERSION = $VN"
	echo "GIT_VERSION = $VN" >$GVF
}


back to top