Still not understanding SVN Repositories in eclipse

Posted by jax on Stack Overflow See other posts from Stack Overflow or by jax
Published on 2010-06-10T12:44:09Z Indexed on 2010/06/10 12:52 UTC
Read the original article Hit count: 187

Filed under:
|

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

http://mysite.com/svn/client_name1/

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?

http://mysite.com/svn/client_name1/project1

OR

http://mysite.com/svn/client_name1/project1/trunk

© Stack Overflow or respective owner

Related posts about eclipse

Related posts about svn