diff options
author | Max Kirillov <max@max630.net> | 2015-10-26 07:29:00 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-10-26 13:08:21 -0700 |
commit | 95261974bbc8cc1a32ed260f06a694cde86f732d (patch) | |
tree | 47cb74aa88f6cb6b955b4522c5be4fa4fc2cd5f1 /builtin | |
parent | 441c4a40173fe1ee8a5c0094e587dfc47e2a6460 (diff) | |
download | git-95261974bbc8cc1a32ed260f06a694cde86f732d.tar.gz git-95261974bbc8cc1a32ed260f06a694cde86f732d.tar.xz |
blame: fix option name in error message
The option name used in blame's UI is `--reverse`.
Signed-off-by: Max Kirillov <max@max630.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/blame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/blame.c b/builtin/blame.c index 303e217ae..b54746901 100644 --- a/builtin/blame.c +++ b/builtin/blame.c @@ -2677,7 +2677,7 @@ parse_done: 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; |