Revamp update_all_submodules

+ submodules file is no longer needed
+ list of submodules is loaded from .gitmodules
+ order of the submodules is determined by .gitmodules
+ nested submodules are processed recursively by .gitmodules
+ all submodules, including nested, are updated in one cycle

Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit 9f54f58809)
r14.0.x r14.0.4
Slávek Banko 8 years ago
parent 0e9786f3a5
commit 558e70b263

@ -6,7 +6,7 @@ if [[ -e /var/lock/update-tde-git-submodules ]]; then
exit 0 exit 0
fi fi
if [[ ! -e .git ]] || if [[ ! -e .git ]] &&
[[ -z "`git rev-parse --git-dir 2>/dev/null`" ]]; then [[ -z "`git rev-parse --git-dir 2>/dev/null`" ]]; then
echo "Current directory does not contain a .git folder. Exiting..." echo "Current directory does not contain a .git folder. Exiting..."
exit 1 exit 1
@ -19,57 +19,91 @@ if [[ -z "$branch" ]] ||
exit 1 exit 1
fi fi
GITUSER="Automated System <$(git config --get user.email)>"
# check git abilities # check git abilities
if [[ -n "`git status --help 2>/dev/null|grep -- '--ignore-submodules'`" ]]; then if [[ -n "`git status --help 2>/dev/null|grep -- '--ignore-submodules'`" ]]; then
GIT_IGNORE_SUBMODULES="--ignore-submodules" GIT_IGNORE_SUBMODULES="--ignore-submodules"
fi fi
touch /var/lock/update-tde-git-submodules # echo in bold
echobd () {
if [ -p /dev/stdout ]; then
echo "$1"
else
echo -ne "\033[1m"
echo -n "$1"
echo -e "\033[0m"
fi
}
PARENTDIR=$PWD # commmit changed module
echo "Working in $PARENTDIR" commitModule() {
git pull if [[ "$1" == "" ]]; then
if [[ ! -z "`git status --porcelain $GIT_IGNORE_SUBMODULES`" ]]; then return
git reset --hard HEAD fi
git clean -dxff local MODULE=$1
fi
exec 3< submodules cd $PARENTDIR/$MODULE/..
while read <&3 cd `git rev-parse --show-toplevel`
do if [[ ! -z "`git status --porcelain $PARENTDIR/$MODULE`" ]]; then
cd $PARENTDIR echo "Committing changes to $PWD"
DIR2UPDATE=$REPLY git add $PARENTDIR/$MODULE
if [[ $DIR2UPDATE != "" ]]; then git commit $PARENTDIR/$MODULE --author "$GITUSER" -m "Reset submodule $MODULE to latest HEAD"
echo "Attempting to reset submodule $DIR2UPDATE" fi
cd $PARENTDIR/$DIR2UPDATE/.. if [[ "`git rev-parse HEAD`" != "`git rev-parse origin/$branch`" ]]; then
cd `git rev-parse --show-toplevel` echo "Push changes for $PWD"
if [[ -z "`grep \"^Updated: $PWD$\" /var/lock/update-tde-git-submodules`" ]]; then git pull --rebase
echo "Updated: $PWD" >>/var/lock/update-tde-git-submodules git push origin HEAD
git submodule init fi
git submodule update }
fi
cd $PARENTDIR/$DIR2UPDATE
if [[ ! -z "`git status --porcelain $GIT_IGNORE_SUBMODULES`" ]]; then
git reset --hard HEAD
git clean -dxff
fi
git checkout $branch
git pull
cd ..
cd `git rev-parse --show-toplevel`
echo "Committing changes to $PWD"
if [[ ! -z "`git status --porcelain $PARENTDIR/$DIR2UPDATE`" ]]; then
git add $PARENTDIR/$DIR2UPDATE
git commit $PARENTDIR/$DIR2UPDATE -m "Reset submodule $DIR2UPDATE to latest HEAD"
fi
if [[ "`git rev-parse HEAD`" != "`git rev-parse origin/$branch`" ]]; then
git push origin HEAD
fi
fi
done
exec 3>&-
# Let the disk subsystem recover # update module and submodules
sleep 60 updateModule() {
local MODULE
if [[ "$1" != "" ]]; then
MODULE=$1/
else
MODULE=""
fi
cd $PARENTDIR/$MODULE
if [[ ! -z "`git status --porcelain $GIT_IGNORE_SUBMODULES`" ]]; then
git reset --hard HEAD
git clean -dxff
fi
if [[ "$1" != "" ]]; then
git checkout $branch
fi
git pull --rebase
if [[ "`git rev-parse HEAD`" != "`git rev-parse origin/$branch`" ]]; then
echo "Push changes for $PWD"
git push origin HEAD
fi
if [[ "$1" != "" ]]; then
commitModule $1
fi
if [[ -e $PARENTDIR/$MODULE.gitmodules ]]; then
sed -n "s|^\[submodule \"\([^\"]*\)\"\]$|\1|p" <$PARENTDIR/$MODULE.gitmodules |\
while read submodule; do
echobd "Attempting to reset submodule ${MODULE}${submodule}"
cd $PARENTDIR/$MODULE
git submodule init -- $submodule
git submodule update -- $submodule
updateModule ${MODULE}${submodule}
done
if [[ "$1" != "" ]]; then
commitModule $1
fi
fi
}
# Update from top module
touch /var/lock/update-tde-git-submodules
cd `git rev-parse --show-toplevel`
PARENTDIR=$PWD
echobd "Working in $PARENTDIR"
updateModule
echobd "Done in $PARENTDIR"
rm /var/lock/update-tde-git-submodules rm /var/lock/update-tde-git-submodules

Loading…
Cancel
Save