SVN's log has a "-v" mode that outputs filenames of files changed in each commit, like so:

jes5199$ svn log -v
------------------------------------------------------------------------
r1 |   jes5199 | 2007-01-03 14:39:41 -0800 (Wed, 03 Jan 2007) | 1 line
Changed paths:
   A /AUTHORS
   A /COPYING
   A /ChangeLog
   A /EVOLUTION
   A /INSTALL
   A /MacOSX

Is there a quick way to get a list of changed files in each commit in git?

link

39% accept rate
feedback

3 Answers

up vote 86 down vote accepted

Try one of the following.

git log --name-status

or

git log --name-only

or

git log --stat
link
feedback

You can use the command git whatchanged to get a list of files that changed in each commit (along with the commit message).

link
feedback

git show is also a great command.

It's kind of like svn diff, but you can pass it a commit guid and see that diff.

link
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.