Browse Source

Merge branch 'mk/blame-error-message' into maint

The error message from "git blame --contents --reverse" incorrectly
talked about "--contents --children".

* mk/blame-error-message:
  blame: fix option name in error message
maint
Junio C Hamano 9 years ago
parent
commit
fdca2bed90
  1. 2
      builtin/blame.c

2
builtin/blame.c

@ -2691,7 +2691,7 @@ parse_done:
sb.commits.compare = compare_commits_by_commit_date; sb.commits.compare = compare_commits_by_commit_date;
} }
else if (contents_from) 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) else if (revs.first_parent_only)
die("combining --first-parent and --reverse is not supported"); die("combining --first-parent and --reverse is not supported");
else { else {

Loading…
Cancel
Save