I often use git log --name-only
when viewing the log to see what files each commit changed or introduced. Git tacks on a list of file paths to each log entry.
However, if you use git log --name-only path-to-file
you will just get the commits involving that file as expected, but it will only additionally list the file specified rather than the full list of files that commit changed. Making it quite useless. This behavior was seen for Git version 2.1.4.
Is there a different incantation available to list all files changed per commit when viewing the log for a particular file?