How to display a specific user's commits in svn log?

mimrock picture mimrock · Dec 21, 2010 · Viewed 98.7k times · Source

How to display a specific user's commits in svn? I didn't find any switches for that for svn log.

Answer

yvoyer picture yvoyer · Dec 21, 2010

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.