X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=ident.c;h=b35504a8d25594a8d243ae7490733eae5a262712;hb=a41a32bf1ce74f3be5c1ab398db1a93b89e6a99e;hp=ed44a5345a47d4843e8328c0f879ac925dde2b07;hpb=1cbcefb107776ce2da374697bb4f6e2bd22ff73f;p=git.git diff --git a/ident.c b/ident.c index ed44a5345..b35504a8d 100644 --- a/ident.c +++ b/ident.c @@ -250,6 +250,9 @@ const char *git_author_info(int flag) const char *git_committer_info(int flag) { + if (getenv("GIT_COMMITTER_NAME") && + getenv("GIT_COMMITTER_EMAIL")) + user_ident_explicitly_given = 1; return fmt_ident(getenv("GIT_COMMITTER_NAME"), getenv("GIT_COMMITTER_EMAIL"), getenv("GIT_COMMITTER_DATE"),