summaryrefslogtreecommitdiffstats
path: root/git/git-tar-changelog.sh
diff options
context:
space:
mode:
Diffstat (limited to 'git/git-tar-changelog.sh')
-rwxr-xr-xgit/git-tar-changelog.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/git/git-tar-changelog.sh b/git/git-tar-changelog.sh
new file mode 100755
index 0000000..ca16483
--- /dev/null
+++ b/git/git-tar-changelog.sh
@@ -0,0 +1,20 @@
+#! /bin/bash
+
+branch=rc
+tag_old=v2.0-rc4
+tag=v2.0-rc5
+
+sdir=`dirname $0`
+thisdir=`pwd`
+
+. $sdir/funcs_git.sh
+
+for i in gluegen joal joal-demos jogl jogl-demos jocl jocl-demos ; do
+ cd $i
+ git checkout $branch
+ git pull jogamp $branch
+ git-new-milestone $i $tag_old $tag
+ cd $thisdir
+ echo done $i
+ echo
+done