]> git.ipfire.org Git - thirdparty/git.git/commit - cache.h
Re-fix "builtin-commit: fix --signoff"
authorJunio C Hamano <gitster@pobox.com>
Sun, 9 Dec 2007 01:32:08 +0000 (17:32 -0800)
committerJunio C Hamano <gitster@pobox.com>
Sun, 9 Dec 2007 08:55:55 +0000 (00:55 -0800)
commit774751a8bc594a5b56039bbdc43c45e3882dd804
tree60e5459a634d34763ff783a58e7732869f841e74
parent264474f29a3f41124f98e955b41ebe4e36d14b53
Re-fix "builtin-commit: fix --signoff"

An earlier fix to the said commit was incomplete; it mixed up the
meaning of the flag parameter passed to the internal fmt_ident()
function, so this corrects it.

git_author_info() and git_committer_info() can be told to issue a
warning when no usable user information is found, and optionally can be
told to error out.  Operations that actually use the information to
record a new commit or a tag will still error out, but the caller to
leave reflog record will just silently use bogus user information.

Not warning on misconfigured user information while writing a reflog
entry is somewhat debatable, but it is probably nicer to the users to
silently let it pass, because the only information you are losing is who
checked out the branch.

 * git_author_info() and git_committer_info() used to take 1 (positive
   int) to error out with a warning on misconfiguration; this is now
   signalled with a symbolic constant IDENT_ERROR_ON_NO_NAME.

 * These functions used to take -1 (negative int) to warn but continue;
   this is now signalled with a symbolic constant IDENT_WARN_ON_NO_NAME.

 * fmt_ident() function implements the above error reporting behaviour
   common to git_author_info() and git_committer_info().  A symbolic
   constant IDENT_NO_DATE can be or'ed in to the flag parameter to make
   it return only the "Name <email@address.xz>".

 * fmt_name() is a thin wrapper around fmt_ident() that always passes
   IDENT_ERROR_ON_NO_NAME and IDENT_NO_DATE.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-commit-tree.c
builtin-commit.c
builtin-log.c
builtin-tag.c
cache.h
ident.c
refs.c
var.c