Find all files Added by git user

Solution 1:

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

Better methods are likely to be available.

Solution 2:

Try to use below command:

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