DarkLeafyGreen
DarkLeafyGreen

Reputation: 70406

Existing eclipse project to svn

I have a eclipse project and I want to enable subversion for it. So I have setup subversion on my ubuntu server.

I can browse my repository with http://svn.mydomain.net/myproject.

In eclipse I do right-click on my project -> Team -> Share Project and enter all my svn data that eclipse needs for connecting to the repository.

During commit process I get following error:

Some of selected resources were not committed.
Some of selected resources were not committed.
svn: Commit failed (details follow):
svn: Could not open the requested SVN filesystem
svn: PROPFIND of '/myproject/.buildpath':
     500 Internal Server Error (http://svn.mydomain.net)

Any ideas whats wrong here? No data is transfered to my repository.

The vhost.conf for my subdomain looks like that

    ServerName svn.mydomain.de
    ServerAdmin webmaster@localhost

    <Location />
        DAV svn

        SVNParentPath /var/svn

        AuthType Basic
        Require valid-user
        AuthName "Subversion Repository"
        AuthUserFile /etc/apache2/dav_svn.passwd
    </Location>

Upvotes: 1

Views: 853

Answers (1)

khmarbaise
khmarbaise

Reputation: 97359

Check the setup of the SVN Server cause it looks like there is no repository been created or wrongly configured.

Upvotes: 1

Related Questions