What we need: in case of drop out a task or a development, the developer should unlock all files he is locking.
Is there a simple way to check for a specified USER the list of all files he is locking ?
We are running Subversion on a Linux server using svn version 1.8.11 (r1643975).
Use
svnadmin lslocks
(requires local access to the whole repository, i.e. you have to be an administrator) and thengrep
the output. Here is an example (I guess that you can search the web for a more complex one liner which will provide better output, e.g. with coloring):svnadmin lslocks PATH-TO-REPOSITORY | grep 'USERNAME' -B 2
Subversion allows you to steal or break locks, so it may be easier to allow your users to do this instead of using admin tools.
BTW, in Subversion 1.8+ you can use
svnadmin lock
andsvnadmin unlock
commands to manage locks.