Find all files Added by git user

git

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

Best Answer

git whatchanged --author="author regexp" --diff-filter=A --no-commit-id --name-only

Better methods are likely to be available.

Related Question