GIT-VERSION-GEN 762 字节
Newer Older
1 2 3
#!/bin/sh

GVF=GIT-VERSION-FILE
J
Git 2.9  
Junio C Hamano 已提交
4
DEF_VER=v2.9.0
5

6 7 8
LF='
'

9 10 11
# First see if there is a version file (included in release tarballs),
# then try git-describe, then default.
if test -f version
12
then
13
	VN=$(cat version) || VN="$DEF_VER"
14
elif test -d ${GIT_DIR:-.git} -o -f .git &&
J
Junio C Hamano 已提交
15
	VN=$(git describe --match "v[0-9]*" --abbrev=7 HEAD 2>/dev/null) &&
16 17
	case "$VN" in
	*$LF*) (exit 1) ;;
J
Junio C Hamano 已提交
18
	v[0-9]*)
19
		git update-index -q --refresh
20
		test -z "$(git diff-index --name-only HEAD --)" ||
J
Junio C Hamano 已提交
21
		VN="$VN-dirty" ;;
22 23 24
	esac
then
	VN=$(echo "$VN" | sed -e 's/-/./g');
25 26
else
	VN="$DEF_VER"
27
fi
28 29

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

31 32 33 34 35 36 37 38 39 40
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
}