I\'m looking for an efficient way to get the list of unique commit authors for an SVN repository as a whole, or for a given resource path. I haven\'t been able to find an SVN co
One a remote repository you can use:
svn log --quiet https://url/svn/project/ | grep "^r" | awk '{print $3}' | sort | uniq