commit: check committer identity more strictly
commitf20f3878ac95e254ec6fd22b63cfb6eda67e5ded
authorJeff King <peff@peff.net>
Mon, 23 Jul 2012 18:50:35 +0000 (23 14:50 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 23 Jul 2012 20:27:21 +0000 (23 13:27 -0700)
tree11404c85ec117b86b342013d3076725bf584a248
parentd0f1ea6003d97e63110fa7d50bb07f546a909b6e
commit: check committer identity more strictly

The identity of the committer will ultimately be pulled from
the ident code by commit_tree(). However, we make an attempt
to check the author and committer identity early, before the
user has done any manual work like inputting a commit
message. That lets us abort without them having to worry
about salvaging the work from .git/COMMIT_EDITMSG.

The early check for committer ident does not use the
IDENT_STRICT flag, meaning that it would not find an empty
name field. The motivation was presumably because we did not
want to be too restrictive, as later calls might be more lax
(for example, when we create the reflog entry, we do not
care too much about a real name). However, because
commit_tree will always get a strict identity to put in the
commit object itself, there is no point in being lax only to
die later (and in fact it is harmful, because the user will
have wasted time typing their commit message).

Incidentally, this bug was masked prior to 060d4bb, as the
initial loose call would taint the later strict call. So the
commit would succeed (albeit with a bogus committer line in
the commit object), and nobody noticed that our early check
did not match the later one.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/commit.c