Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> writes: > This doesn't spew out a histogram, but you can use the various "git > grep/blame" one-liners (https://www.google.nl/search?q=git+grep+blame) > plus shell one-liner to get something useful: > > git grep -e '^--no-' -e '^--\[no-' -n | perl -F':' -anpe '$_=`git blame -L$F[1],+1 $F[0]`' | perl -pe 's/^.* (\d{4})-.*\) /$1 /' | sort -n Yikes. I cannot easily unsee this X-<.