summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2012-05-24 23:27:24 (GMT)
committerJunio C Hamano <gitster@pobox.com>2012-05-25 00:16:40 (GMT)
commitc15e1987aec562107bd8e4a9fdeebf6d27d0e53a (patch)
tree7bb9dc7a2d2af6a62d28c2245165d21ddd4f232d /cache.h
parent359b27add341878a13c6a8b85849b75b78246c7e (diff)
downloadgit-c15e1987aec562107bd8e4a9fdeebf6d27d0e53a.zip
git-c15e1987aec562107bd8e4a9fdeebf6d27d0e53a.tar.gz
git-c15e1987aec562107bd8e4a9fdeebf6d27d0e53a.tar.bz2
ident: let callers omit name with fmt_indent
Most callers want to see all of "$name <$email> $date", but a few want only limited parts, omitting the date, or even the name. We already have IDENT_NO_DATE to handle the date part, but there's not a good option for getting just the email. Callers have to done one of: 1. Call ident_default_email; this does not respect environment variables, nor does it promise to trim whitespace or other crud from the result. 2. Call git_{committer,author}_info; this returns the name and email, leaving the caller to parse out the wanted bits. This patch adds IDENT_NO_NAME; it stops short of adding IDENT_NO_EMAIL, as no callers want it (nor are likely to), and it complicates the error handling of the function. When no name is requested, the angle brackets (<>) around the email address are also omitted. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cache.h b/cache.h
index 65cbab5..713cd04 100644
--- a/cache.h
+++ b/cache.h
@@ -889,6 +889,7 @@ enum date_mode parse_date_format(const char *format);
#define IDENT_ERROR_ON_NO_NAME 1
#define IDENT_NO_DATE 2
+#define IDENT_NO_NAME 4
extern const char *git_author_info(int);
extern const char *git_committer_info(int);
extern const char *fmt_ident(const char *name, const char *email, const char *date_str, int);