1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#!/bin/bash
if [ $# -ne 1 ]
then
echo "Usage: `basename $0` release"
echo "where release is of the form v11, v12, ..."
exit 1
fi
version=$1
tagname=release-${version}
./git-version.sh ${tagname}
# Commit the version change
git commit -m "version numbering" autojump
#Create tag
git tag -a ${tagname}
#check for tag existence
git describe release-$1 2>&1 >/dev/null ||
{
echo "Invalid version $1"
exit 1
}
git archive --format=tar --prefix autojump_${version}/ ${tagname} | gzip > autojump_${version}.tar.gz
|