diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-02-17 10:15:23 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-02-17 10:15:23 -0800 |
commit | d7c8b33a35ad4f081dfcf231ea7dabf4ed88c889 (patch) | |
tree | 716f15efd192c8d5012883d9cf21e980c452ee1a /builtin/commit.c | |
parent | a23069ce045b271de98aff257ca68cc1952cc571 (diff) | |
parent | 1044b1f6a1a56ae723fd19cddd769380dc775f48 (diff) | |
download | git-d7c8b33a35ad4f081dfcf231ea7dabf4ed88c889.tar.gz |
Merge branch 'mg/commit-author-no-match-malformed-message'
The error message from "git commit", when a non-existing author
name was given as value to the "--author=" parameter, has been
reworded to avoid misunderstanding.
* mg/commit-author-no-match-malformed-message:
commit: reword --author error message
Diffstat (limited to 'builtin/commit.c')
-rw-r--r-- | builtin/commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/commit.c b/builtin/commit.c index 7f467133b8..6055c760f0 100644 --- a/builtin/commit.c +++ b/builtin/commit.c @@ -1050,7 +1050,7 @@ static const char *find_author_by_nickname(const char *name) clear_mailmap(&mailmap); return strbuf_detach(&buf, NULL); } - die(_("No existing author found with '%s'"), name); + die(_("--author '%s' is not 'Name <email>' and matches no existing author"), name); } |