Fix typo in git-rebase.sh.

s/upsteram/upstream in git-rebase.sh.

Signed-off-by: Jason Riedy <ejr@cs.berkeley.edu>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Jason Riedy 2006-02-21 12:56:14 -08:00 committed by Junio C Hamano
parent 5508a61663
commit d0080b3cda

View File

@ -75,7 +75,7 @@ esac
# The upstream head must be given. Make sure it is valid. # The upstream head must be given. Make sure it is valid.
upstream_name="$1" upstream_name="$1"
upstream=`git rev-parse --verify "${upstream_name}^0"` || upstream=`git rev-parse --verify "${upstream_name}^0"` ||
die "invalid upsteram $upstream_name" die "invalid upstream $upstream_name"
# If a hook exists, give it a chance to interrupt # If a hook exists, give it a chance to interrupt
if test -x "$GIT_DIR/hooks/pre-rebase" if test -x "$GIT_DIR/hooks/pre-rebase"