Files
git/pushall
2011-09-28 18:13:00 -07:00

15 lines
204 B
Bash
Executable File

#!/bin/sh
git push repo "$@" &&
git push gph "$@" &&
git push github2 "$@" &&
git push sfjp "$@" &&
git push sf.net "$@" &&
case "$#" in
0)
git push github "$@" ;;
*)
echo "No push to github" ;;
esac