From: Max Kirillov Date: Mon, 26 Oct 2015 05:29:00 +0000 (+0200) Subject: blame: fix option name in error message X-Git-Tag: v2.6.3~16^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/95261974bbc8cc1a32ed260f06a694cde86f732d?hp=--cc blame: fix option name in error message The option name used in blame's UI is `--reverse`. Signed-off-by: Max Kirillov Signed-off-by: Junio C Hamano --- 95261974bbc8cc1a32ed260f06a694cde86f732d diff --git a/builtin/blame.c b/builtin/blame.c index 303e217ae9..b547469015 100644 --- a/builtin/blame.c +++ b/builtin/blame.c @@ -2677,7 +2677,7 @@ int cmd_blame(int argc, const char **argv, const char *prefix) sb.commits.compare = compare_commits_by_commit_date; } else if (contents_from) - die("--contents and --children do not blend well."); + die("--contents and --reverse do not blend well."); else { final_commit_name = prepare_initial(&sb); sb.commits.compare = compare_commits_by_reverse_commit_date;