Pavan
Pavan

Reputation: 85

SVN:List all checked in files

I want to know if there is any sort of query which can list all the files that are checked in to SVN by a certain user?

Regards, Pavan

Upvotes: 3

Views: 4027

Answers (2)

ire_and_curses
ire_and_curses

Reputation: 70162

Does something like this help you?

svn list -v http://svn.repo/path/to/dir | grep username

Upvotes: 2

mikej
mikej

Reputation: 66263

You could do svn log URL --xml -v and then parse the XML for commits by the user you are interested in. The action attribute on each path would tell you whether it was an "A" addition of a new file or a "M" modification of an existing file.

Upvotes: 1

Related Questions