Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I view the file paths that were last modified in git?

Tags:

git

What git command will display a list of all committed modifications, one modified file per line, with the file's path?

like image 692
ripper234 Avatar asked Feb 24 '23 02:02

ripper234


1 Answers

I think

git log --stat

is what you're after.

like image 70
Robin Green Avatar answered Feb 26 '23 19:02

Robin Green