How to view paths to files that were last modified in git?

What will the git command display a list of all committed changes, one changed file in each line, the path to the file?

+4
source share
2 answers

I think,

git log --stat 

- that's what you need.

+6
source

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.

+2
source

All Articles