Meta/pushall: explicitly support -n

This commit is contained in:
Junio C Hamano
2012-03-05 22:49:55 -08:00
parent c9704f60d1
commit 80a572b7ad

View File

@@ -6,14 +6,14 @@ do
git push "$remote" "$@" || exit $?
done
case "$#" in
0)
case "$#,$*" in
0,* | 1,-n)
printf "github mirror: "
git push github "$@" || exit $?
for topic in htmldocs manpages
do
printf "%s: " "$topic"
( cd ../git-$topic.git && git push ) || exit
( cd ../git-$topic.git && git push "$@") || exit
done
;;
esac