X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git-push.sh;fp=git-push.sh;h=5aa6531945c9e3494e34abb08d81e9ad03864521;hb=c485104741ccdf32dd0c96fcb886c38a0b5badbd;hp=a67f47df8ea4cdd3c916afdea6791f7e64571e7c;hpb=2f9d685c6188ac5537fefa1729c91f1cd3de66cd;p=git.git diff --git a/git-push.sh b/git-push.sh index a67f47df..5aa65319 100755 --- a/git-push.sh +++ b/git-push.sh @@ -1,6 +1,11 @@ #!/bin/sh . git-sh-setup || die "Not a git archive" +usage () { + die "Usage: git push [--all] [--force] []" +} + + # Parse out parameters and then stop at remote, so that we can # translate it using .git/branches information has_all= @@ -18,7 +23,7 @@ do --exec=*) has_exec="$1" ;; -*) - die "Unknown parameter $1" ;; + usage ;; *) set x "$@" shift @@ -41,8 +46,10 @@ esac 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