How can I access a subversion repository using a local path in Windows?

后端 未结 5 1546
情书的邮戳
情书的邮戳 2021-02-03 18:58

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

相关标签:
5条回答
  • 2021-02-03 19:21

    Try:

    svn checkout "file:///C|/repositories/repository"
    

    and see if you can see the files inside the repo.

    0 讨论(0)
  • 2021-02-03 19:23

    try

    file://c:/repositories/repository

    0 讨论(0)
  • 2021-02-03 19:39

    Usually "not a working copy" means that there's no .svn "magic subdirectory" there.

    You need to do a "checkout" to get a working copy, and not just an "export"

    0 讨论(0)
  • 2021-02-03 19:43

    You should be able to use file:///c:\repositories\repository to access a repository via path.

    0 讨论(0)
  • 2021-02-03 19:44

    Common mistake. You have to use the file:// pseudo-protocol like this:

    file:///C:/repositories/repository
    

    SVN repository paths have to be URIs.

    0 讨论(0)
提交回复
热议问题