From a971895762b2f28c4c727e2e6a99cc4db8fc966d Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Thu, 8 Jul 2010 07:54:20 -0700 Subject: [PATCH] Meta/pushall: github is configured to be a mirror and does not take parameters --- pushall | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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 -- 2.47.3