Reputation: 5860
I am on ubuntu and i have installed svn and whatever else it requires to use it( at least thats what i think from the dozens of tutorials i looked into... )
so i have downloaded Versions subversion client app and when i tried to connect like
svn://[email protected]
and type my password
i got an error
No repository found in 'svn://[email protected]/'
i have create my repository called repo inside a folder called /svn but why it wont let me connect?
Upvotes: 0
Views: 684
Reputation: 5454
It could happen if you manually copy a project to another repository locally and all the .svn directories are still there.
use this on the copied dir
find . -type f -name ".svn" -exec rm -i -f -r '{}' \;
Upvotes: 0
Reputation: 97389
You know that the part after domain.com/Path gives the absolute path on your machine where a subversion repository has to be created via svnadmin create /Path.
Upvotes: 1