From: Oleg Broytman Date: Wed, 17 Sep 2014 19:50:01 +0000 (+0400) Subject: Pull all remotes X-Git-Url: https://git.phdru.name/?a=commitdiff_plain;h=f288a00b6279914b19c3e92e69fc62ad71cc7bea;p=git-scripts.git Pull all remotes --- diff --git a/pull-usrlocalsrc b/pull-usrlocalsrc index 2f4c029..f8654c0 100755 --- a/pull-usrlocalsrc +++ b/pull-usrlocalsrc @@ -5,5 +5,5 @@ prog_dir="`dirname \"$0\"`" && cat "$prog_dir"/locate-all.list | grep -F /usr/local/src | while true; do read d || exit 0 - echo "----- $d -----"; cd "$d" && git pull origin || exit 1 + echo "----- $d -----"; cd "$d" && git pull --all || exit 1 done