Hi,
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
Hi,
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
Does something like this help you?
svn list -v http://svn.repo/path/to/dir | grep username
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.