Subversion Upgrade Issue

When I try to update my repository, I get the following error. Can someone explain what this means?

Command: Refresh
Error: url
Error: "http: // mysvn / foo"
Error: existing directory
Error: "C: \ SVN \ MyProj \ NinjectModules \ Models" does not match | Error: expected URL 'http: // mysvn / foo / NinjectModules / Models'
Finished!:

+3
source share
2 answers

This error message is usually due to cover errors in the svn repository . Perhaps your svn is installed on a Linux machine, and you have two identical folders:

(..)/mysvn/foo (..)/MySVN/Foo 

And initially, SVN checks MySVN/Foo and does not find the \NinjectModules\Models folder, since it is located in /mysvn/foo location

+2
source

This is not always the case.

I came across this error message due to improper relocation of the directory that scrambled the svn data. I fixed this to remove the working copy directory and then update this svn directory.

+9
source

Source: https://habr.com/ru/post/893704/


All Articles