Reputation: 1577
I want to build a workspace with subversion, and I followed some tutorials;
svnadmin create /var/svn/repos
--OKsvnserve -d -r /var/svn/repos
) --have no return svn import /var/svn/import /var/svn/repos
) --also no returnsvn info svn://localhost/var/home/repos
)--
svn: warning: W160013: URL 'svn://localhost/var/svn/repos' non-existent in revision 1 svn: E200009: Could not list all targets because some targets don't exist
Which step is wrong? Did I miss something important?
Upvotes: 1
Views: 1625
Reputation: 7058
The path is wrong in step 6. svnserve
interprets paths as local paths within the repository it is serving. Try this:
svn info svn://localhost/
Upvotes: 4