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?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

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

link|improve this answer
this one looks easier to parse – IsaacB Oct 7 '11 at 1:36
feedback
$ svn log -v -r revision url://repo/path
link|improve this answer
this one also works – IsaacB Oct 7 '11 at 1:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.