I’d like to enable SVNAutoversioning for one repository only. Would this work?
<Location /repos/>
DAV svn
SVNParentPath /path/to/repositories
</Location>
<Location /repos/specific_repo/>
SVNAutoversioning on
</Location>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No.
The SVNAutoversioning directive is an apache directive valid for the whole Location directive
In your (erroneous) example you would have an new “Location” without any SVN configuration in it. There is no inheritation of the parameters from one location to another. Also: which location should apache choose for accessing SVN?`Both would be valid.
You have to move your repositories with autoversioning into another location:
Obviously this will break some of the checkout URLS which you have to repair with
for pre SVN 1.7, resp.
for svn 1.7 clients