Also clarify failure to push to read-only remote. Signed-off-by: Chris Shoemaker <c.shoemaker at cox.net> --- git-push.sh | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) c312de8ed8aad08a3cfa4b8edce025f30781a1c3 diff --git a/git-push.sh b/git-push.sh --- a/git-push.sh +++ b/git-push.sh @@ -18,7 +18,8 @@ do --exec=*) has_exec="$1" ;; -*) - die "Unknown parameter $1" ;; + die "Usage: git push [--all] [--force] <repository> <refspec>" + ;; *) set x "$@" shift @@ -41,7 +42,7 @@ shift case "$remote" in http://* | https://* | git://* | rsync://* ) - die "Cannot push to $remote" ;; + die "Cannot use READ-ONLY transport to push to $remote" ;; esac set x "$remote" "$@"; shift - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Sat Oct 29 14:17:07 2005
This archive was generated by hypermail 2.1.8 : 2005-10-29 14:18:41 EST