diff options
author | Junio C Hamano <junkio@cox.net> | 2006-04-26 12:07:42 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-26 12:16:19 -0700 |
commit | b176e6ba5bc37466ffcb6c8c0f38c47ec6e9e73a (patch) | |
tree | 49ffa427061c13e415f9a9cfc0130fa27ded3308 | |
parent | 7d09fbe4ab7f080a8f8f5dcef7e0f3edf5e26019 (diff) | |
download | git-b176e6ba5bc37466ffcb6c8c0f38c47ec6e9e73a.tar.gz git-b176e6ba5bc37466ffcb6c8c0f38c47ec6e9e73a.tar.xz |
rebase: typofix.
Noticed by Sean.
Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-x | git-rebase.sh | 2 |
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" |