aboutsummaryrefslogtreecommitdiff
path: root/git-rebase.sh
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-04-26 12:07:42 -0700
committerJunio C Hamano <junkio@cox.net>2006-04-26 12:16:19 -0700
commitb176e6ba5bc37466ffcb6c8c0f38c47ec6e9e73a (patch)
tree49ffa427061c13e415f9a9cfc0130fa27ded3308 /git-rebase.sh
parent7d09fbe4ab7f080a8f8f5dcef7e0f3edf5e26019 (diff)
downloadgit-b176e6ba5bc37466ffcb6c8c0f38c47ec6e9e73a.tar.gz
git-b176e6ba5bc37466ffcb6c8c0f38c47ec6e9e73a.tar.xz
rebase: typofix.
Noticed by Sean. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-rebase.sh')
-rwxr-xr-xgit-rebase.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-rebase.sh b/git-rebase.sh
index 86dfe9cb9..f7b2b9401 100755
--- a/git-rebase.sh
+++ b/git-rebase.sh
@@ -107,7 +107,7 @@ onto=$(git-rev-parse --verify "${onto_name}^0") || exit
# Check if we are already based on $onto, but this should be
# done only when upstream and onto are the same.
-if test "$upstream" = "onto"
+if test "$upstream" = "$onto"
then
mb=$(git-merge-base "$onto" "$branch")
if test "$mb" = "$onto"