Reputation: 14535
Basically, I want a listing of all places SVN code has been checked out to. Does subversion track this? I can do "SVN ls", that shows me what's in the report, but not where all it has been checked out to.
Upvotes: 3
Views: 361
Reputation: 23757
Subversion does not track this in the same way that Notepad doesn't track every file that it has ever saved. It's a client application that operates at most on the current directory.
The best you can do is search your disk for .svn folders. Assuming your SVN client is at least version 1.7 then each .svn folder will correspond to a single checkout:
... Subversion 1.7 working copies have just one .svn directory—in the root of the working copy.
Upvotes: 5