Skip to content

Commit

Permalink
Add usage help to git-push.sh
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
c.shoemaker@cox.net authored and Junio C Hamano committed Oct 29, 2005
1 parent 2f9d685 commit c485104
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions git-push.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#!/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=
Expand All @@ -18,7 +23,7 @@ do
--exec=*)
has_exec="$1" ;;
-*)
die "Unknown parameter $1" ;;
usage ;;
*)
set x "$@"
shift
Expand All @@ -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
Expand Down

0 comments on commit c485104

Please sign in to comment.