Meta/ML: handle branches that were indirectly merged a bit better
[alt-git.git] / pushall
blob4045cbd27ba04fac4616555f27be58a2aa1d0dc3
1 #!/bin/sh
3 for remote in ko repo gph github2 sfjp sf.net
4 do
5 printf "%s: " "$remote"
6 git push "$remote" "$@" || exit $?
7 done
9 case "$#,$*" in
10 0,* | 1,-n)
11 printf "github mirror: "
12 git push github "$@" || exit $?
13 for topic in htmldocs manpages
15 printf "%s: " "$topic"
16 ( cd ../git-$topic.git && git push "$@") || exit
17 done
19 esac