mirror of
https://github.com/glest/glest-source.git
synced 2025-09-09 15:30:41 +02:00
Make git a bit more usable
This commit is contained in:
28
mk/linux/git_update.sh
Executable file
28
mk/linux/git_update.sh
Executable file
@@ -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'
|
@@ -12,7 +12,7 @@ usage() {
|
||||
|
||||
case $1 in
|
||||
|
||||
pull )
|
||||
pull|status|branch )
|
||||
echo '==> Running "git '"$1"'" on main repository...'
|
||||
cd $(dirname $0)
|
||||
git $1
|
||||
|
Reference in New Issue
Block a user