vote up 2 vote down star
1

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?

flag

45% accept rate

2 Answers

vote up 2 vote down check

Try one of the following.

git log --name-status

or

git log --name-only

or

git log --stat
link|flag
vote up 3 vote down

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

link|flag

Your Answer

Get an OpenID
or

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