On Fri, Oct 23, 2020 at 11:18:51AM +0530, VenomVendor wrote: > What did you do before the bug happened? (Steps to reproduce your issue) > * Create empty repo using `git init` > * Make few commits, at least two > * execute `git log --format=fuller` > * Notice the log, with "Author", "AuthorDate", "Commit", "CommitDate" > * Note, "Commit" > * execute `git rebase --committer-date-is-author-date HEAD~1` > * execute `git log --format=fuller` > * Note, email from "Commit" is empty <> Thanks for a clear report. I was able to easily reproduce the problem. There are actually two related bugs here, and they're both regressions in v2.29.0. [1/3]: t3436: check --committer-date-is-author-date result more carefully [2/3]: am: fix broken email with --committer-date-is-author-date [3/3]: rebase: fix broken email with --committer-date-is-author-date builtin/am.c | 4 ++-- sequencer.c | 2 +- t/t3436-rebase-more-options.sh | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) -Peff