X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git-rebase.sh;h=f7b2b9401a90e5aa598daa6049ae5d33e5c5b157;hb=aa6bf0eb6489d652c5877d65160ed33c857afa74;hp=86dfe9cb96aea2f52ea6dea51d89605530abfd08;hpb=f327dbced25a3c6fcc0b84d2d6adffa9343b09f0;p=git.git 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"