diff options
Diffstat (limited to 'git/git-forallrepos-showbranchl.sh')
-rwxr-xr-x | git/git-forallrepos-showbranchl.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/git/git-forallrepos-showbranchl.sh b/git/git-forallrepos-showbranchl.sh new file mode 100755 index 0000000..2f2010d --- /dev/null +++ b/git/git-forallrepos-showbranchl.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 branch -v + cd .. +done |