What git command will display a list of all committed modifications, one modified file per line, with the file's path?
2 Answers
I think
git log --stat is what you're after.
4 Comments
ripper234
Looks great, thanks. Can you make it show the full untrimmed path?
Robin Green
I wasn't aware that it did trim paths. Oh, do you mean the absolute path?
Robin Green
Or is it because you're not at the top level of the working tree?
ripper234
it just trims them. The documentation reveals this parameter to set the width to 200: git log --stat=200,200.