diff --git a/mk/linux/git_update.sh b/mk/linux/git_update.sh new file mode 100755 index 00000000..281981c4 --- /dev/null +++ b/mk/linux/git_update.sh @@ -0,0 +1,28 @@ +#!/bin/bash +LANG=en_US.utf-8 + +cd "$(dirname $(readlink -f $0))" + +echo STAGE 1/3 - GIT PULL +echo +echo Entering ../.. +git pull +echo +git submodule foreach 'git pull; echo' + +echo +echo +echo STAGE 2/3 - GIT BRANCH +echo +echo Entering ../.. +git branch +echo +git submodule foreach 'git branch; echo' + +echo +echo STAGE 3/3 - GIT STATUS +echo +echo Entering ../.. +git status +echo +git submodule foreach 'git status; echo' diff --git a/mk/linux/mg_git.sh b/mk/linux/mg_git.sh index 3ed8271a..d59e3d31 100755 --- a/mk/linux/mg_git.sh +++ b/mk/linux/mg_git.sh @@ -12,7 +12,7 @@ usage() { case $1 in - pull ) + pull|status|branch ) echo '==> Running "git '"$1"'" on main repository...' cd $(dirname $0) git $1