From: Junio C Hamano Date: Thu, 8 Jul 2010 14:54:20 +0000 (-0700) Subject: Meta/pushall: github is configured to be a mirror and does not take parameters X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a971895762b2f28c4c727e2e6a99cc4db8fc966d;p=thirdparty%2Fgit.git Meta/pushall: github is configured to be a mirror and does not take parameters --- diff --git a/pushall b/pushall index 24c18eddb9..4522c65ced 100755 --- a/pushall +++ b/pushall @@ -1,6 +1,12 @@ #!/bin/sh git push repo "$@" && -git push github "$@" && git push sfjp "$@" && -git push sf.net "$@" +git push sf.net "$@" && + +case "$#" in +0) + git push github "$@" ;; +*) + echo "No push to github" ;; +esac