up vote 4 down vote favorite
3
share [g+] share [fb]

If so the following one-liner utilizing awk might provide a useful template

svn log -v -r{2009-05-21}:HEAD | awk '/^r[0-9]+ / {user=$3} /yms_web/ {if (user=="george") {print $2}}' | sort | uniq
link|improve this question

feedback

closed as not a real question by Will Jan 6 at 14:57

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ.

2 Answers

up vote 2 down vote accepted

You could add this to the list of useful command-line svn examples.

link|improve this answer
Thanks I'll do that! – George Jempty Jun 5 '09 at 14:02
I love StackOverflow – Jaco Pretorius May 31 '11 at 18:16
feedback

Or use the XML output (--xml) of svn log and an Xslt processor.

link|improve this answer
That is a real good idea. I'm going to combine the question above, and the xml parsing to improve a powershell script I wrote. – Justin Dearing Aug 26 '10 at 15:21
feedback

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