0

I have external hosting but I think it didn't support installing SVN server application, I installed on my local computer Visual SVN server, and tried to set it's repository as ftp path, The application did't support network ftp, I tried to map ftp path to drive letter but didn't succeeded.
Please Help enter image description here

alroc
  • 27,574
  • 6
  • 51
  • 97
JustMe
  • 6,065
  • 3
  • 19
  • 17
  • That needs to be a windows path, not an URL. Even if you got this to work, your Subversion server would be on your machine and not at that network address. – crashmstr Aug 18 '14 at 18:55

1 Answers1

1
  • You can not use non-local path as repository location
  • Mounting remote location and using it as local repository-drive is, in common, Bad Idea (tm) and shortest way to corrupted repository

Correct solution in your case will be:

  • Local repository
  • Local Working Copy
  • Some deploy-tools, which can work from post-commit hook (or on demand) and upload (using FTP) files on final destination
Lazy Badger
  • 94,711
  • 9
  • 78
  • 110