SVN: list of all marked files

I want to know if there is any request that can display all files checked in SVN by a specific user?

Regards, Pavan

+3
source share
2 answers

Does this help you?

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

You can do svn log URL --xml -vand then parse the XML for the commit by the user that interests you. The action attribute on each path will tell you whether it was adding “A” a new file or “M”, modifying an existing file.

+1
source

Source: https://habr.com/ru/post/1713933/


All Articles