Nutel
Nutel

Reputation: 2294

Get all diffs related to a certain user in Subversion

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

Answers (1)

Joel Spolsky
Joel Spolsky

Reputation: 33667

If your user is, say, "spolsky":

  svn log | sed -n '/spolsky/,/-----$/ p'

Upvotes: 1

Related Questions