I want to get a list of the most recently added files using git. Is there any sane way to do this?

link|improve this question

62% accept rate
feedback

1 Answer

up vote 2 down vote accepted

"git whatchanged --diff-filter=A" will show commits that added files, and the files they added, newest first.

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.