add tag support
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
efe1d3db79
commit
c2454b645b
1 changed files with 5 additions and 2 deletions
|
@ -20,6 +20,11 @@ vi $files
|
||||||
# Commit stuff
|
# Commit stuff
|
||||||
git commit $files
|
git commit $files
|
||||||
|
|
||||||
|
# add tag
|
||||||
|
printf "Enter description for %s>" "$version"
|
||||||
|
read tagmessage
|
||||||
|
git tag "$version" "$tagmessage"
|
||||||
|
|
||||||
# Import into current version branch
|
# Import into current version branch
|
||||||
git checkout $branch
|
git checkout $branch
|
||||||
git merge master
|
git merge master
|
||||||
|
@ -27,5 +32,3 @@ git merge master
|
||||||
# Publish manpages and sourcecode
|
# Publish manpages and sourcecode
|
||||||
./build.sh web
|
./build.sh web
|
||||||
./build.sh pub
|
./build.sh pub
|
||||||
|
|
||||||
# FIXME: add tagging somewhere!
|
|
||||||
|
|
Loading…
Reference in a new issue