Svn – How to get the author of an svn revision using the command line

svn

I want to use the command line to send a repository location and a revision number, and get back some output that has the author of that revision in it. How can I do this?

Best Answer

svn info -r revnumber target - the output will include a Last Changed Author line.