In git, how can I simply find all of the files that were added to a repository by a particular user?

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted
git whatchanged --author="author regexp" --diff-filter=A --no-commit-id --name-only

Better methods are likely to be available.

link|improve this answer
feedback

git whatchanged --diff-filter=A --author=AUTHOR --pretty=format:%an | awk '{print $6}'

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.