Reputation: 2294
What is the easiest way to get all changes that was made by a certain user? By changes I mean diff between revision before and after his commit.
Upvotes: 2
Views: 202
Reputation: 33667
If your user is, say, "spolsky":
svn log | sed -n '/spolsky/,/-----$/ p'
Upvotes: 1