summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorJonathan Nieder <jrnieder@gmail.com>2013-09-25 06:29:00 (GMT)
committerJonathan Nieder <jrnieder@gmail.com>2013-09-25 06:29:00 (GMT)
commit7f794aab3eb84fedf1240c845976cab1c566c716 (patch)
tree9790ca68355e0981ea201a912bb68dfe40ebb368 /builtin
parenta301889980237b4d1cba9d07e48bdaf67064af83 (diff)
parentcd4f09e38341bdd17cf008ea57863e4b10ac176b (diff)
downloadgit-7f794aab3eb84fedf1240c845976cab1c566c716.zip
git-7f794aab3eb84fedf1240c845976cab1c566c716.tar.gz
git-7f794aab3eb84fedf1240c845976cab1c566c716.tar.bz2
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.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/builtin/shortlog.c b/builtin/shortlog.c
index ae73d17..c226f76 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;