Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-04-26 23:07:42 +0400
committerJunio C Hamano <junkio@cox.net>2006-04-26 23:16:19 +0400
commitb176e6ba5bc37466ffcb6c8c0f38c47ec6e9e73a (patch)
tree49ffa427061c13e415f9a9cfc0130fa27ded3308 /git-rebase.sh
parent7d09fbe4ab7f080a8f8f5dcef7e0f3edf5e26019 (diff)
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 86dfe9cb96..f7b2b9401a 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"