From: Junio C Hamano Date: Wed, 26 Apr 2006 19:07:42 +0000 (-0700) Subject: rebase: typofix. X-Git-Tag: v1.3.2~17 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=b176e6ba5bc37466ffcb6c8c0f38c47ec6e9e73a;p=git.git rebase: typofix. Noticed by Sean. Signed-off-by: Junio C Hamano --- diff --git a/git-rebase.sh b/git-rebase.sh index 86dfe9cb..f7b2b940 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"