You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
967 B
53 lines
967 B
20 years ago
|
#!/bin/sh
|
||
19 years ago
|
. git-sh-setup || die "Not a git archive"
|
||
20 years ago
|
|
||
|
# Parse out parameters and then stop at remote, so that we can
|
||
|
# translate it using .git/branches information
|
||
|
has_all=
|
||
|
has_force=
|
||
|
has_exec=
|
||
|
remote=
|
||
|
|
||
|
while case "$#" in 0) break ;; esac
|
||
|
do
|
||
|
case "$1" in
|
||
|
--all)
|
||
|
has_all=--all ;;
|
||
|
--force)
|
||
|
has_force=--force ;;
|
||
|
--exec=*)
|
||
|
has_exec="$1" ;;
|
||
|
-*)
|
||
|
die "Unknown parameter $1" ;;
|
||
|
*)
|
||
|
set x "$@"
|
||
|
shift
|
||
|
break ;;
|
||
|
esac
|
||
|
shift
|
||
|
done
|
||
20 years ago
|
case "$#" in
|
||
|
0)
|
||
|
die "Where would you want to push today?" ;;
|
||
|
esac
|
||
20 years ago
|
|
||
19 years ago
|
. git-parse-remote
|
||
20 years ago
|
remote=$(get_remote_url "$@")
|
||
|
case "$has_all" in
|
||
|
--all) set x ;;
|
||
|
'') set x $(get_remote_refs_for_push "$@") ;;
|
||
20 years ago
|
esac
|
||
20 years ago
|
shift
|
||
20 years ago
|
|
||
|
case "$remote" in
|
||
|
http://* | https://* | git://* | rsync://* )
|
||
|
die "Cannot push to $remote" ;;
|
||
|
esac
|
||
|
|
||
|
set x "$remote" "$@"; shift
|
||
|
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 "$@"
|