I have a subversion repository that was used with VisualSVN before. Code was committed using https: urls. Now the repository is used without VisualSVN, only with TortoiseSVN. The paths are now file://...
There are several projects with older revisions commited through https: and newer ones commited through file:.
When I check out a newer revision of the project "Project 1" (as an example), everything works. This revision was commited using file:. Trying to check out an older revision that was committed using https:, I get an error message
Error: URL 'file://...../Project%201' does not exist
Looks like the paths using https: where encoded like urls and cannot be accessed using file: protocol ? What can I do to fix this and get my older revisions out of the repository?
Edit: I tried to compare old revision versus new revision, and that works. The diff program can read both revisions, but checkout of the older revision is not possible.
Edit 2: I was probably not very clear on my problem: I need to check out older revisions, but get the above error message. Checking out newer revisions (of the same repository folder) works as usual.
Edit 3: There is a different cause of the problem, please disregard the file: / https: topic. Sorry for the confusion.
I made some tests and could reproduce what is happening:
If I open the Repository Browser and move a folder to another location, I cannot access the revisions of that folder prior to the move anymore. Trying to checkout a revision prior to the move produces the above error message.
What can I do to get these pre-move revisions checked out?
I posted a new question about the problem I have after I found out that my assumptions on the cause were incorrect. Thanks to all for your answers!