I'm only interested in which files are newly created/modified/deleted between two commits,

is there a way to get such information?

link|improve this question

0% accept rate
feedback

2 Answers

$ git diff revision1 revision2
link|improve this answer
It's showing more than I want,which is noise to me. – telnet Sep 19 '11 at 3:12
feedback
git diff --name-only rev1 rev2

This will show only the names of files that were changed in some way between the two revisions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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