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
|
feedback
|
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 for guidance on how to improve it.
|
You could add this to the list of useful command-line svn examples. | |||||
|
feedback
|
|
Or use the XML output (--xml) of svn log and an Xslt processor. | |||
feedback
|