summaryrefslogtreecommitdiffstats
path: root/git/git-forallrepos-checkout.sh
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2015-03-27 23:27:20 +0100
committerSven Gothel <[email protected]>2015-03-27 23:27:20 +0100
commitc9e3db639d9a451cdb34d777a01d104cbcfc8bf6 (patch)
tree3c11071ecddba7ec69523c86068989b71a52ca05 /git/git-forallrepos-checkout.sh
parent9e8c671e873cfa9f2834a48d4aa0a2170683dcfd (diff)
a few more git scripts ..
Diffstat (limited to 'git/git-forallrepos-checkout.sh')
-rwxr-xr-xgit/git-forallrepos-checkout.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/git/git-forallrepos-checkout.sh b/git/git-forallrepos-checkout.sh
new file mode 100755
index 0000000..b026cb1
--- /dev/null
+++ b/git/git-forallrepos-checkout.sh
@@ -0,0 +1,10 @@
+#! /bin/bash
+
+for i in gluegen jcpp joal joal-demos jogl oculusvr-sdk jogl-demos jocl jocl-demos ; do
+ cd $i
+ echo
+ echo MODULE $i
+ echo
+ git checkout master
+ cd ..
+done