Meta/pushall: github is configured to be a mirror and does not take parameters

todo
Junio C Hamano 2010-07-08 07:54:20 -07:00
parent 3bc8f10b46
commit a971895762
1 changed files with 8 additions and 2 deletions

10
pushall
View File

@ -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