X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git-push.sh;h=140c8f85d55c5654cfc9077fecfd03ad067a6862;hb=61f693bd5a2ab4d830aad6fce0a1c70863f38009;hp=5aa6531945c9e3494e34abb08d81e9ad03864521;hpb=c485104741ccdf32dd0c96fcb886c38a0b5badbd;p=git.git diff --git a/git-push.sh b/git-push.sh index 5aa65319..140c8f85 100755 --- a/git-push.sh +++ b/git-push.sh @@ -1,5 +1,5 @@ #!/bin/sh -. git-sh-setup || die "Not a git archive" +. git-sh-setup usage () { die "Usage: git push [--all] [--force] []" @@ -46,7 +46,7 @@ esac shift case "$remote" in -http://* | https://* | git://*) +git://*) die "Cannot use READ-ONLY transport to push to $remote" ;; rsync://*) die "Pushing with rsync transport is deprecated" ;; @@ -57,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