I want to get a list of the most recently added files using git. Is there any sane way to do this?
|
up vote
1
down vote
favorite
|
|||
|
|
|
up vote
2
down vote
accepted
|
"git whatchanged --diff-filter=A" will show commits that added files, and the files they added, newest first. |
||
|
|