mbilyanov
mbilyanov

Reputation: 2511

svn export will return "non-existent in that revision" error

I am trying the following: svn export http://svn.mySvn.net/scripts/python/testScript.py/tags/0.0.1 ./testScript.py/tags/0.0.1

And I get: svn: URL 'http://svn.mySvn.net/scripts/python/testScript.py/tags/0.0.1' doesn't exist

When I do this: svn list http://svn.mySvn.net/scripts/python/testScript.py/tags/

I get the folder: 0.1.1/

What is the problem? A bug?

Thanks.

Upvotes: 0

Views: 910

Answers (1)

savv'y
savv'y

Reputation: 219

You mentioned

When I do this: svn list http://svn.mySvn.net/scripts/python/testScript.py/tags/

I get the folder: 0.1.1

However, you're trying to access folder 0.0.1 in the URL:

'http://svn.mySvn.net/scripts/python/testScript.py/tags/0.0.1'

Is the folder you're trying to access 0.1.1 or 0.0.1?

Upvotes: 2

Related Questions