0

I have a server where the folder is stored. When I type

svn info

on the server, it says:

URL: file:///abc/def 

If I want to checkout a copy into a local machine from the server, how can I find the corresponding http address?

Thanks

Zoe
  • 27,060
  • 21
  • 118
  • 148
WriteBackCMO
  • 629
  • 2
  • 9
  • 18

1 Answers1

1
  • You must to have any (svnserve|httpd) server, which will provide remote access to repo
  • In case of such server, you have to find server's config (or starting script), where you'll find all configuration setting

In common case - you can't predict (more true for http://, less for svn://) URL of repository with local path only

Lazy Badger
  • 94,711
  • 9
  • 78
  • 110
  • Normally where are those config files? I tried ~/.subversion/ but couldn't find any information there. – WriteBackCMO May 15 '13 at 16:06
  • @cxf54 - ~/.subversion/ is config-path for Subversion **clients**, server part *may be* inside Apache's httpd.conf or in starting svnserve line. Check with ps -xa, does you have *any* server running – Lazy Badger May 15 '13 at 20:55
  • I solved the problem by using svn co svn+ssh http://abc/svn_location. Thanks, Lazy – WriteBackCMO May 16 '13 at 20:56