Johannes Sixt [off-list ref] writes:
Am 03.02.2018 um 22:34 schrieb Elijah Newren:
quoted
If anyone can find an
example of a real world open source repository (linux, webkit, git,
etc.) with a merge where n is greater than about 10, I'll be
surprised.
git rev-list --parents --merges master |
grep " .* .* .* .* .* .* .* .* .* .* "
Twinkle twinkle little stars? ;-)
rev-list can take --min-parents=10 option for a thing like this. In
fact, --merges is implemented in terms of that option.