From: Greg Kroah-Hartman Date: Thu, 13 Feb 2014 21:53:29 +0000 (-0800) Subject: scripts/tag_stable: add script X-Git-Tag: v3.12.11~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b5bfacc5a7d229248fde62ef6ca09db600271d4e;p=thirdparty%2Fkernel%2Fstable-queue.git scripts/tag_stable: add script --- diff --git a/scripts/tag_stable b/scripts/tag_stable new file mode 100755 index 00000000000..d5e0a12c2cb --- /dev/null +++ b/scripts/tag_stable @@ -0,0 +1,18 @@ +#!/bin/bash + +if [ $# -ne 1 ]; then + echo -e "Usage:\t $0 release_number\ne.g.\t $0 2.6.11.12" + exit 1 +fi + +RELEASE=$1 +echo "tagging stable release $RELEASE" +echo "[ret] to continue ^C to quit" +read + + +# tag it +#git tag -u kroah.com -m "This is the $RELEASE stable release" v$RELEASE +git tag -u 6092693E -m "This is the $RELEASE stable release" v$RELEASE + +exit