3

I have created a repository in a shared folder. Usually I simply mapped a drive and checked out the repository using a file URL:

svn checkout file:///T:\MyRepository .
where T: is \\mySharedFolder

Is there some way how to specify in a url directly a path of a shared folder?

Something like:

svn checkout \\mySharedFolder\MyRepository .
Zoe
  • 27,060
  • 21
  • 118
  • 148
Timofey
  • 2,478
  • 3
  • 37
  • 53

1 Answers1

9

Use file://mySharedFolder/MyRepository

abatishchev
  • 98,240
  • 88
  • 296
  • 433
  • 1
    I am using tortoisesvn which is on windows and when I try to supply the a repository url as you have suggested (file:///\\mySharedFolder\MyRepository) I receive an error: *Unable to open an ra_local session to url*. Which client do you use where such syntax is accepted? – Timofey Feb 02 '11 at 08:52