X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git-push.sh;h=140c8f85d55c5654cfc9077fecfd03ad067a6862;hb=f88961a85f14dd3fae4f5204f8187ba5d9a7646e;hp=a67f47df8ea4cdd3c916afdea6791f7e64571e7c;hpb=f9362de96131c323a00ce5e135dd76f7134c7f01;p=git.git diff --git a/git-push.sh b/git-push.sh index a67f47df..140c8f85 100755 --- a/git-push.sh +++ b/git-push.sh @@ -1,5 +1,10 @@ #!/bin/sh -. git-sh-setup || die "Not a git archive" +. git-sh-setup + +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 @@ -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" ;; +git://*) + die "Cannot use READ-ONLY transport to push to $remote" ;; +rsync://*) + die "Pushing with rsync transport is deprecated" ;; esac set x "$remote" "$@"; shift @@ -50,4 +57,9 @@ test "$has_all" && set x "$has_all" "$@" && shift test "$has_force" && set x "$has_force" "$@" && shift test "$has_exec" && set x "$has_exec" "$@" && shift -exec git-send-pack "$@" +case "$remote" in +http://* | https://*) + exec git-http-push "$@";; +*) + exec git-send-pack "$@";; +esac