How to display a specific user's commits in svn? I didn't find any switches for that for svn log.
You could use this:
svn log | sed -n '/USERNAME/,/-----$/ p'
It will show you every commit made by the specified user (USERNAME).
UPDATE
As suggested by @bahrep, subversion 1.8 comes with a --search
option.