How can I get the list of all Java files in my repo and get the original author and every committer to that file since.
My attempt is below but I'd like one line for each Java file and list of all committers after that.
git log --name-only --pretty=format:"The author of %h was %ae on %aD" -- '*.java'