Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

up vote 253 down vote accepted

Try one of the following.

git log --name-status

or

git log --name-only

or

git log --stat
share|improve this answer
12  
The last one is the most informative. – Raffi Khatchadourian Jul 31 '12 at 0:55
4  
@RaffiKhatchadourian - unfortunately it doesn't display file additions - 0 files changed. git version 1.8.0.msysgit.0 – kerim Feb 5 at 7:07

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

share|improve this answer

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.

share|improve this answer

git diff --stat HEAD^! shows changed files and added/removed line counts for the last commit (HEAD).

It seems to me that there is no single command to get concise output consisting only of filenames and added and removed line counts for several commits at once, so I created my own bash script for that:

#!/bin/bash
for ((i=0; i<=$1; i++))
do
    sha1=`git log -1 --skip=$i --pretty=format:%H`
    echo "HEAD~$i $sha1"
    git diff --stat HEAD~$(($i+1)) HEAD~$i 
done

To be called eg. ./changed_files 99 to get the changes in a concise form from HEAD to HEAD~99. Can be piped eg. to less.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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