I'm going to set up SVN repositories for multiple projects. I wonder if it's possible to set per-project limits for repository size?

link|improve this question

71% accept rate
feedback

1 Answer

You may be able to use SVN hooks to do this. For example, perhaps you could create a pre-commit hook that won't allow the commit if the project is already over a certain size.

Here's an example of a hook to limit the size of each individual commit (not quite what you want, but it may serve as a guide for my suggestion above):

http://www.davidgrant.ca/limit_size_of_subversion_commits_with_this_hook

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.