Here's how you get the full list without cropping:
git log --stat=200 --stat-name-width=150
200 indicates the full width of the output and 150 for the column width of the file name. If the width of the name is greater than the total width, it will be truncated.
source share