How can I list the author names of a particular folder that\'s versioned by git?
I see that I can git blame a file and list the author of each line, but I c
git blame
Based on The shortest possible output from git log containing author and date
do this
git log --pretty=format:"%an%x09" myfolder | sort | uniq