My situation
I moved the SVN data from one server to another, received all the settings and worked fine, except that when I created a new file and tried to transfer it to SVN, I received the following error (ONLY to commit a new file (add), the update works excellent (existing files)).
$ svn commit -am 'testing commit' Adding trunk/public_html/mynewtestfile.txt svn: Commit failed (details follow): svn: Could not open the requested SVN filesystem svn: Could not open the requested SVN filesystem
My Vhosts is configured so that I can have multiple repositories in the same directory, and I can access them like this:
http://svn.mydomain.com/repo1 http://svn.mydomain.com/repo2
It turns out that my vhosts.conf (or httpd.conf or wherever you set up virtual hosts) uses SVNParentPath so that I can access my SVN repositories using the above URLs.
Q. How do I configure multiple SVN repositories in the same directory on my server?
A : https://serverfault.com/questions/461144/vhost-setup-for-multiple-svn-repositories
Now I could either configure SVN in my vhosts separately to fix this error (check my answer on ServerFault post) ( svn: Could not open... ), or I just needed to create another SVN repo in my repos directory under the name error .
I created this repository as follows:
This seemed to resolve all my errors with passing code through my SVN.
source share