diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-06-01 13:28:25 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-06-01 13:28:25 -0700 |
commit | 3ba46634202968045e05e4d7f969d97c61efa53d (patch) | |
tree | 38e71726997c2161a44016af1407bf182cb625a9 /git-rebase.sh | |
parent | 264d5a717bb450ae06969face25c70b000e1358f (diff) | |
parent | 9180feafbc7c637a4fae72d1ca1d3b2245b4302c (diff) | |
download | git-3ba46634202968045e05e4d7f969d97c61efa53d.tar.gz |
Merge branch 'ef/maint-rebase-error-message'
By Erik Faye-Lund
* ef/maint-rebase-error-message:
rebase: report invalid commit correctly
Diffstat (limited to 'git-rebase.sh')
-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 9148ec25c1..e616737444 100755 --- a/git-rebase.sh +++ b/git-rebase.sh @@ -424,7 +424,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 |