gitweb: Handle other types of tag in git_print_log
[gitweb.git] / git-rebase.sh
index 69c1374823084804662dbd6b6d510ec2ec3428e9..ede9723327e32f312da7d1122912459b502e69bb 100755 (executable)
@@ -165,6 +165,7 @@ run_specific_rebase () {
        if [ "$interactive_rebase" = implied ]; then
                GIT_EDITOR=:
                export GIT_EDITOR
+               autosquash=
        fi
        . git-rebase--$type
 }
@@ -418,7 +419,7 @@ case "$onto_name" in
        ;;
 *)
        onto=$(git rev-parse --verify "${onto_name}^0") ||
-       die "Does not point to a valid commit: $1"
+       die "Does not point to a valid commit: $onto_name"
        ;;
 esac