Browse Source

Meta/pushall: adjust to new layout

todo
Junio C Hamano 13 years ago
parent
commit
3646cd6e54
  1. 10
      pushall

10
pushall

@ -9,7 +9,11 @@ done @@ -9,7 +9,11 @@ done
case "$#" in
0)
printf "github mirror: "
git push github "$@" ;;
*)
echo "No push to github" ;;
git push github "$@" || exit $?
for topic in htmldocs manpages
do
printf "%s: " "$topic"
( cd ../git-$topic.git && git push ) || exit
done
;;
esac

Loading…
Cancel
Save