mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
215a7ad1ef
As promised, this is the "big tool rename" patch. The primary differences since 0.99.6 are: (1) git-*-script are no more. The commands installed do not have any such suffix so users do not have to remember if something is implemented as a shell script or not. (2) Many command names with 'cache' in them are renamed with 'index' if that is what they mean. There are backward compatibility symblic links so that you and Porcelains can keep using the old names, but the backward compatibility support is expected to be removed in the near future. Signed-off-by: Junio C Hamano <junkio@cox.net>
52 lines
967 B
Bash
Executable file
52 lines
967 B
Bash
Executable file
#!/bin/sh
|
|
. git-sh-setup || die "Not a git archive"
|
|
|
|
# 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
|
|
case "$#" in
|
|
0)
|
|
die "Where would you want to push today?" ;;
|
|
esac
|
|
|
|
. git-parse-remote
|
|
remote=$(get_remote_url "$@")
|
|
case "$has_all" in
|
|
--all) set x ;;
|
|
'') set x $(get_remote_refs_for_push "$@") ;;
|
|
esac
|
|
shift
|
|
|
|
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 "$@"
|