From: gitmlko@not-evil.de
To: git@vger.kernel.org
Cc: ps@pks.im, Michael Lohmann <git@lohmann.sh>
Subject: [PATCH] builtin/reflog: respect user config in "write" subcommand
Date: Tue, 30 Sep 2025 11:14:11 +0200 [thread overview]
Message-ID: <20250930091411.14179-1-gitmlko@not-evil.de> (raw)
In-Reply-To: <aNsc9En-DjxVOLcV@pks.im>
From: Michael Lohmann <git@lohmann.sh>
Previously, the reflog write command only recognized the environment
variables GIT_COMMITTER_NAME and GIT_COMMITTER_EMAIL. It did not account
for user.name and user.email settings from the Git configuration.
Since the test suite always sets these variables, it was unnoticed that
not present, it would use the system config as defaults instead of the
git config.
Co-Authored-By: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Michael Lohmann <git@lohmann.sh>
---
builtin/reflog.c | 2 ++
t/t1421-reflog-write.sh | 11 ++++++++++-
2 files changed, 12 insertions(+), 1 deletion(-)
diff --git a/builtin/reflog.c b/builtin/reflog.c
index c8f6b93d60..40884787b9 100644
--- a/builtin/reflog.c
+++ b/builtin/reflog.c
@@ -422,6 +422,8 @@ static int cmd_reflog_write(int argc, const char **argv, const char *prefix,
if (argc != 4)
usage_with_options(reflog_write_usage, options);
+ repo_config(repo, git_ident_config, NULL);
+
ref = argv[0];
if (!is_root_ref(ref) && check_refname_format(ref, 0))
die(_("invalid reference name: %s"), ref);
diff --git a/t/t1421-reflog-write.sh b/t/t1421-reflog-write.sh
index 46df64c176..65fc4cae93 100755
--- a/t/t1421-reflog-write.sh
+++ b/t/t1421-reflog-write.sh
@@ -101,10 +101,19 @@ test_expect_success 'simple writes' '
EOF
git reflog write refs/heads/something $COMMIT_OID $COMMIT_OID second &&
- test_reflog_matches . refs/heads/something <<-EOF
+ test_reflog_matches . refs/heads/something <<-EOF &&
$ZERO_OID $COMMIT_OID $SIGNATURE first
$COMMIT_OID $COMMIT_OID $SIGNATURE second
EOF
+
+ sane_unset GIT_COMMITTER_NAME &&
+ sane_unset GIT_COMMITTER_EMAIL &&
+ git config --local user.name "Author" &&
+ git config --local user.email "a@uth.or" &&
+ git reflog write refs/heads/something_new $ZERO_OID $COMMIT_OID first &&
+ test_reflog_matches . refs/heads/something_new <<-EOF
+ $ZERO_OID $COMMIT_OID Author <a@uth.or> 1112911993 -0700 first
+ EOF
)
'
base-commit: 821f583da6d30a84249f75f33501504d597bc16b
--
2.51.GIT
next prev parent reply other threads:[~2025-09-30 9:39 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-29 11:11 git reflog write does not pick up user.name and user.email from config Michael
2025-09-29 23:57 ` Patrick Steinhardt
2025-09-30 9:14 ` gitmlko [this message]
2025-09-30 11:26 ` [PATCH] builtin/reflog: respect user config in "write" subcommand Patrick Steinhardt
2025-09-30 14:37 ` [PATCH v2] " git
2025-09-30 17:13 ` Junio C Hamano
2025-09-30 19:53 ` [PATCH v3] " Michael Lohmann
2025-10-01 7:37 ` Patrick Steinhardt
2025-10-01 16:50 ` Junio C Hamano
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=20250930091411.14179-1-gitmlko@not-evil.de \
--to=gitmlko@not-evil.de \
--cc=git@lohmann.sh \
--cc=git@vger.kernel.org \
--cc=ps@pks.im \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).