summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-10-30 13:07:01 -0700
committerJunio C Hamano <gitster@pobox.com>2015-10-30 13:07:02 -0700
commit23d58a00e55f0e5803e190ce861c5354cf19484a (patch)
treea7d538999f104d3b6d3f6836eed28e7c0fee02b6
parent808d11926351018f73db69d54e5920adef578f62 (diff)
parent95261974bbc8cc1a32ed260f06a694cde86f732d (diff)
downloadgit-23d58a00e55f0e5803e190ce861c5354cf19484a.tar.gz
Merge branch 'mk/blame-error-message'
The error message from "git blame --contents --reverse" incorrectly talked about "--contents --children". * mk/blame-error-message: blame: fix option name in error message
-rw-r--r--builtin/blame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/blame.c b/builtin/blame.c
index 6fc7bff9a3..3b80e8fd75 100644
--- a/builtin/blame.c
+++ b/builtin/blame.c
@@ -2691,7 +2691,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 if (revs.first_parent_only)
die("combining --first-parent and --reverse is not supported");
else {