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

@ -1 +1 @@
Subproject commit aea4d1ce128e104025b6a6a14e638c48acc113ac
Subproject commit 3d89a45791b3bbfb0e7c4a30b04f9bfa1f18cca9

View File

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