diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2013-09-24 23:29:00 -0700 |
---|---|---|
committer | Jonathan Nieder <jrnieder@gmail.com> | 2013-09-24 23:29:00 -0700 |
commit | 7f794aab3eb84fedf1240c845976cab1c566c716 (patch) | |
tree | 9790ca68355e0981ea201a912bb68dfe40ebb368 /builtin | |
parent | a301889980237b4d1cba9d07e48bdaf67064af83 (diff) | |
parent | cd4f09e38341bdd17cf008ea57863e4b10ac176b (diff) | |
download | git-7f794aab3eb84fedf1240c845976cab1c566c716.tar.gz git-7f794aab3eb84fedf1240c845976cab1c566c716.tar.xz |
Merge branch 'jk/shortlog-tolerate-broken-commit'
* jk/shortlog-tolerate-broken-commit:
shortlog: ignore commits with missing authors
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/shortlog.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/builtin/shortlog.c b/builtin/shortlog.c index ae73d17b6..c226f767a 100644 --- a/builtin/shortlog.c +++ b/builtin/shortlog.c @@ -127,9 +127,11 @@ void shortlog_add_commit(struct shortlog *log, struct commit *commit) author = buffer + 7; buffer = eol; } - if (!author) - die(_("Missing author: %s"), + if (!author) { + warning(_("Missing author: %s"), sha1_to_hex(commit->object.sha1)); + return; + } if (log->user_format) { struct pretty_print_context ctx = {0}; ctx.fmt = CMIT_FMT_USERFORMAT; |