I have CollabNet Subversion server and client installed, running off of Apache that came with it. From the command line on the server, I can easily access the repository using a path like
http://server:port/svn/repository
but I can't access it using its actual location on the disk, like
c:\repositories\repository
I just get "[path] is not a working copy." What am I misunderstanding?
You can either store your repositories locally and access them using the file:// protocol or you can place them on a server and access them with the http:// or svn:// protocols. The two server protocols can also be encrypted. You use https:// or svn+ssh:// , or you can use svn:// with SASL.
Common mistake. You have to use the file:// pseudo-protocol like this:
file:///C:/repositories/repository
SVN repository paths have to be URIs.
Try:
svn checkout "file:///C|/repositories/repository"
and see if you can see the files inside the repo.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With