Linus Torvalds [off-list ref] writes:
Junio, I just tested the "master" branch, and "git log --stat" doesn't
work there.
Ahhhh.
opt.diffopt.output_format = DIFF_FORMAT_PATCH;
- if (opt.diffopt.output_format == DIFF_FORMAT_PATCH)
+ if (opt.diffopt.output_format == DIFF_FORMAT_PATCH ||
+ opt.diffopt.output_format == DIFF_FORMAT_DIFFSTAT)
opt.diffopt.recursive = 1;
When pointed out in a patch from, it looks so obvious. *BLUSH*
Thanks.