From: Phillip Wood <phillip.wood123@gmail.com>
To: Junio C Hamano <gitster@pobox.com>, Jeff King <peff@peff.net>
Cc: Jonathan Nieder <jrnieder@gmail.com>,
Luke Dashjr <luke@dashjr.org>,
git@vger.kernel.org
Subject: Re: GIT_COMMITTER_* and reflog
Date: Tue, 29 Oct 2019 14:05:53 +0000 [thread overview]
Message-ID: <08310159-41f9-43e2-5d54-a48fd403ad07@gmail.com> (raw)
In-Reply-To: <xmqqr22ybcs7.fsf@gitster-ct.c.googlers.com>
Hi Junio/Peff
On 27/10/2019 12:20, Junio C Hamano wrote:
> Jeff King <peff@peff.net> writes:
>
>> If somebody wants to pursue a patch, I suspect the solution is probably
>> something like this (totally untested):
>
> Looks sensible. It is very much unsatisfying that datestamp(),
> which is used by fmt_ident() when no date string is given, seems to
> totally bypass date.c::get_time(), which means the framework to give
> fake timestamp via GIT_TEST_DATE_NOW cannot be used to write
> reproducible tests.
>
> Given that datestamp() is only used by the push certificate and
> fast-import codepaths and nowhere else, I suspect that "fixing" it
> retroactively to honor GIT_TEST_DATE_NOW would not have any negative
> fallout, but that's not something I should be contemplating on
> during the -rc period ;-)
It would allow for more robust am/rebase --ignore-date tests as we would
know what date to expect rather than just checking the timezone.
Best Wishes
Phillip
>
> Thanks.
>
>>
>> diff --git a/refs/files-backend.c b/refs/files-backend.c
>> index d60767ab73..2ebf2feeb8 100644
>> --- a/refs/files-backend.c
>> +++ b/refs/files-backend.c
>> @@ -1658,7 +1658,10 @@ static int files_log_ref_write(struct files_ref_store *refs,
>> if (logfd < 0)
>> return 0;
>> result = log_ref_write_fd(logfd, old_oid, new_oid,
>> - git_committer_info(0), msg);
>> + fmt_ident(getenv("GIT_COMMITTER_NAME"),
>> + getenv("GIT_COMMITTER_EMAIL"),
>> + WANT_COMMITTER_IDENT, NULL, 0),
>> + msg);
>> if (result) {
>> struct strbuf sb = STRBUF_INIT;
>> int save_errno = errno;
>>
>> -Peff
next prev parent reply other threads:[~2019-10-29 14:05 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-25 21:49 GIT_COMMITTER_* and reflog Luke Dashjr
2019-10-26 2:20 ` Jonathan Nieder
2019-10-26 2:43 ` Luke Dashjr
2019-11-07 13:57 ` Philip Oakley
2019-10-26 7:34 ` Junio C Hamano
2019-10-26 17:37 ` Jeff King
2019-10-27 12:20 ` Junio C Hamano
2019-10-29 14:05 ` Phillip Wood [this message]
2019-10-29 14:34 ` Jeff King
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=08310159-41f9-43e2-5d54-a48fd403ad07@gmail.com \
--to=phillip.wood123@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=jrnieder@gmail.com \
--cc=luke@dashjr.org \
--cc=peff@peff.net \
--cc=phillip.wood@dunelm.org.uk \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.