views:

79

answers:

2

How to find the list of user checked out and what are all the files are checked out on SVN as like VSS "Status Search".

I'm using Visual studio 2008 and it was integrated with SVN by AnkhSvn.

+7  A: 

Short answer: svn does not operate that way.

Less-short-but-not-long answer: You may be able to extract something meaningful from svn served up via Apache, but the nature of svn does not place importance on who has what checked out, the important part is the commit and you can do many things with hooks.

SleighBoy
+2  A: 

As SleighBoy already sad SVN does not provide this information.

You could use locks to use a resource exclusively and query the status of the resource. But locks are optional and can be broken.

$ svn help lock
lock: Lock working copy paths or URLs in the repository, so that
no other user can commit changes to them.
usage: lock TARGET...

$ svn help status
status (stat, st): Print the status of working copy files and directories.
usage: status [PATH...]
 'K' locked in repository, lock toKen present
Thomas Jung