From d79532c2015f3abfa14bc9462d34a9bd7552d184 Mon Sep 17 00:00:00 2001 From: Robert von Burg Date: Thu, 14 Nov 2013 21:42:48 +0100 Subject: [PATCH] [New] Added new script to list git status of each project --- status.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 status.sh diff --git a/status.sh b/status.sh new file mode 100755 index 000000000..72231d37d --- /dev/null +++ b/status.sh @@ -0,0 +1,20 @@ +#!/bin/bash +####################################################################### +## +## Show status of all projects +## +####################################################################### + +echo "Showing status of li.strolch.dev..." ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.parent..." ; cd li.strolch.parent ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.bom..." ; cd li.strolch.bom ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.model..." ; cd li.strolch.model ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.testbase..." ; cd li.strolch.testbase ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.runtime..." ; cd li.strolch.runtime ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.service..." ; cd li.strolch.service ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.persistence.api..." ; cd li.strolch.persistence.api ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.persistence.xml..." ; cd li.strolch.persistence.xml ; git status -s ; cd .. ; echo +echo "Showing status of li.strolch.tutorialapp..." ; cd li.strolch.tutorialapp ; git status -s ; cd .. ; echo + +echo "Done." +exit 0