Update data reference, git_update script changes

This commit is contained in:
Tom Reynolds
2016-09-06 22:37:42 +02:00
parent 155a80f6b7
commit 30236d997c
2 changed files with 8 additions and 8 deletions

View File

@@ -1,28 +1,28 @@
#!/bin/bash #!/bin/bash
LANG=en_US.utf-8 export LANG=C
cd "$(dirname $(readlink -f $0))" cd "$(dirname $(readlink -f $0))"
echo STAGE 1/3 - GIT PULL echo "STAGE 1/3 - GIT PULL"
echo echo
echo Entering ../.. echo "Entering '../..'"
git pull git pull
echo echo
git submodule foreach 'git pull; echo' git submodule foreach 'git pull; echo'
echo echo
echo echo
echo STAGE 2/3 - GIT BRANCH echo "STAGE 2/3 - GIT BRANCH"
echo echo
echo Entering ../.. echo "Entering '../..'"
git branch git branch
echo echo
git submodule foreach 'git branch; echo' git submodule foreach 'git branch; echo'
echo echo
echo STAGE 3/3 - GIT STATUS echo "STAGE 3/3 - GIT STATUS"
echo echo
echo Entering ../.. echo "Entering '../..'"
git status git status
echo echo
git submodule foreach 'git status; echo' git submodule foreach 'git status; echo'