List users creating files in git
Jump to navigation
Jump to search
As I needed an overview who created what file initially in the project I asked git for help:
git log --name-status --diff-filter=A --format='> %aN' \
| awk '/^>/ {tagline=$0}
/^A\t/ {print tagline "\t" $0}'