In git, how can I simply find all of the files that were added to a repository by a particular user?
|
feedback
|
Better methods are likely to be available. | |||
|
feedback
|
|
git whatchanged --diff-filter=A --author=AUTHOR --pretty=format:%an | awk '{print $6}' | |||
|
feedback
|