From 0f0d0a0916c661e3c1bbc623200c1ce16e31701f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sat, 30 Jan 2016 19:18:57 +0200 Subject: Add submodule update --remote script --- modup.sh | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 modup.sh (limited to 'modup.sh') diff --git a/modup.sh b/modup.sh new file mode 100755 index 0000000..a725abe --- /dev/null +++ b/modup.sh @@ -0,0 +1,25 @@ +#! /bin/sh + +# Update all submodules to remote HEAD by running: +# +# git submodule update --remote +# +# Normally you would follow this with commit. +# + +. etc/git/modules + +wd=`pwd` + +for i in $modules; do + echo "submodule update $i" 1>&2 + cd $i + git submodule update --remote $* + + if [ $? -ne 0 ]; then + echo "submodule update FAILED" 1>&2 + exit 1 + fi + + cd $wd +done -- cgit v1.1