Meta/pushall: github is configured to be a mirror and does not take parameters
Junio C Hamano committed
Jul 8, 2010 at 07:54 UTC
a971895762b2f28c4c727e2e6a99cc4db8fc966d
1 file changed
+8
-2
pushall
+8
-2
@@ -1,6 +1,12 @@
1
#!/bin/sh
2
3
git push repo "$@" &&
4
-git push github "$@" &&
4
git push sfjp "$@" &&
6
-git push sf.net "$@"
5
+git push sf.net "$@" &&
6
+
7
+case "$#" in
8
+0)
9
+ git push github "$@" ;;
10
+*)
11
+ echo "No push to github" ;;
12
+esac