summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorMax Kirillov <max@max630.net>2015-10-26 05:29:00 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-10-26 20:08:21 (GMT)
commit95261974bbc8cc1a32ed260f06a694cde86f732d (patch)
tree47cb74aa88f6cb6b955b4522c5be4fa4fc2cd5f1 /builtin
parent441c4a40173fe1ee8a5c0094e587dfc47e2a6460 (diff)
downloadgit-95261974bbc8cc1a32ed260f06a694cde86f732d.zip
git-95261974bbc8cc1a32ed260f06a694cde86f732d.tar.gz
git-95261974bbc8cc1a32ed260f06a694cde86f732d.tar.bz2
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/blame.c b/builtin/blame.c
index 303e217..b547469 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;