mirror of
https://github.com/git/git.git
synced 2025-09-10 22:44:50 +02:00
Meta/pushall: explicitly support -n
This commit is contained in:
6
pushall
6
pushall
@@ -6,14 +6,14 @@ do
|
||||
git push "$remote" "$@" || exit $?
|
||||
done
|
||||
|
||||
case "$#" in
|
||||
0)
|
||||
case "$#,$*" in
|
||||
0,* | 1,-n)
|
||||
printf "github mirror: "
|
||||
git push github "$@" || exit $?
|
||||
for topic in htmldocs manpages
|
||||
do
|
||||
printf "%s: " "$topic"
|
||||
( cd ../git-$topic.git && git push ) || exit
|
||||
( cd ../git-$topic.git && git push "$@") || exit
|
||||
done
|
||||
;;
|
||||
esac
|
||||
|
||||
Reference in New Issue
Block a user