On Tue, Jul 22, 2025 at 07:42:20PM +0800, Han Young wrote: > In commit cee7f245d (git-pickaxe: blame rewritten., 2006-10-19), > The function get_commit_info can terminate commit parsing early if only > the author information is needed. This ability is not used by callers > who do not require detailed commit information. Stop requesting detailed > commit information for these callers. Okay. I think there's two important pieces of information missing here: - What does this buy us? I guess the answer is performance, but it would be sure to quantify in which scenarios and how much of a speedup this buys us. - Any reasoning why those two callers don't need the information. Reviewers can try to piece it together manually, but it would be nice to hold their hand and lead them through the change. Thanks! Patrick