I am about to import my project into svn but don't want to stuff it up.
My structure is like this:
Repositories:
/var/svn/client_name1/
/var/svn/client_name2/
Project directories under /var/svn/client_name1/
project1/ trunk/ branches/ tags/ project2/ trunk/ branches/ tags/
My Apache config looks like this:
<Location /svn>
DAV svn
SVNParentPath /var/svn
SVNListParentPath on
AuthType Basic
AuthName "My Repository"
AuthUserFile /etc/svnpass
Require valid-user
AuthzSVNAccessFile /etc/svnauth
</Location>
Now I can access my svn repository
however, there are no projects displayed here, just a Revision 0 message (is that correct)?
I can connect to the repository in eclipse using the same url.
If I want to place an existing project into the repository what url do I use?
OR