add tag support

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-04-19 22:43:49 +02:00
parent efe1d3db79
commit c2454b645b
1 changed files with 5 additions and 2 deletions

View File

@ -20,6 +20,11 @@ vi $files
# Commit stuff
git commit $files
# add tag
printf "Enter description for %s>" "$version"
read tagmessage
git tag "$version" "$tagmessage"
# Import into current version branch
git checkout $branch
git merge master
@ -27,5 +32,3 @@ git merge master
# Publish manpages and sourcecode
./build.sh web
./build.sh pub
# FIXME: add tagging somewhere!