summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2f9d685)
raw | patch | inline | side by side (parent: 2f9d685)
author | c.shoemaker@cox.net <c.shoemaker@cox.net> | |
Sat, 29 Oct 2005 04:16:33 +0000 (00:16 -0400) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Sat, 29 Oct 2005 05:26:16 +0000 (22:26 -0700) |
Also clarify failure to push to read-only remote. Especially,
state why rsync:// is not used for pushing.
[jc: ideally rsync should not be used for anything]
Signed-off-by: Chris Shoemaker <c.shoemaker at cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
state why rsync:// is not used for pushing.
[jc: ideally rsync should not be used for anything]
Signed-off-by: Chris Shoemaker <c.shoemaker at cox.net>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-push.sh | patch | blob | history |
diff --git a/git-push.sh b/git-push.sh
index a67f47df8ea4cdd3c916afdea6791f7e64571e7c..5aa6531945c9e3494e34abb08d81e9ad03864521 100755 (executable)
--- a/git-push.sh
+++ b/git-push.sh
#!/bin/sh
. git-sh-setup || die "Not a git archive"
+usage () {
+ die "Usage: git push [--all] [--force] <repository> [<refspec>]"
+}
+
+
# Parse out parameters and then stop at remote, so that we can
# translate it using .git/branches information
has_all=
--exec=*)
has_exec="$1" ;;
-*)
- die "Unknown parameter $1" ;;
+ usage ;;
*)
set x "$@"
shift
shift
case "$remote" in
-http://* | https://* | git://* | rsync://* )
- die "Cannot push to $remote" ;;
+http://* | https://* | git://*)
+ die "Cannot use READ-ONLY transport to push to $remote" ;;
+rsync://*)
+ die "Pushing with rsync transport is deprecated" ;;
esac
set x "$remote" "$@"; shift