mirror of
https://github.com/git/git.git
synced 2026-01-12 13:53:11 +09:00
16 lines
231 B
Bash
Executable File
16 lines
231 B
Bash
Executable File
#!/bin/sh
|
|
|
|
for remote in ko repo gph github2 sfjp sf.net
|
|
do
|
|
printf "%s: " "$remote"
|
|
git push "$remote" "$@" || exit $?
|
|
done
|
|
|
|
case "$#" in
|
|
0)
|
|
printf "github mirror: "
|
|
git push github "$@" ;;
|
|
*)
|
|
echo "No push to github" ;;
|
|
esac
|