From 75cb85e0cfa66480492b80ada19bd5a02ea12305 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 29 May 2015 18:31:08 +0200 Subject: Add git helper scripts --- fetch.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 fetch.sh (limited to 'fetch.sh') diff --git a/fetch.sh b/fetch.sh new file mode 100755 index 0000000..d41278a --- /dev/null +++ b/fetch.sh @@ -0,0 +1,18 @@ +#! /bin/sh + +. etc/git/modules + +wd=`pwd` + +for i in $modules; do + echo "fetch $i" 1>&2 + cd $i + git fetch $* + + if [ $? -ne 0 ]; then + echo "fetch FAILED" 1>&2 + exit 1 + fi + + cd $wd +done -- cgit v1.1