Reputation: 4684
Is there any way to configure an SVN server such that it does not accept commits if a descriptive message related to changes are not entered or filled in?
PS: I use TortoiseSVN as the client and svnserve, version 1.4.2 (r22196) as the server (available default with the distribution).
Upvotes: 2
Views: 178
Reputation: 43575
Either use a pre-commit hook script (works with all svn clients since the check is done on the server), or set the tsvn:logminsize property (works only with TortoiseSVN).
Upvotes: 3
Reputation: 6986
Yes, you'll want to look at pre-commit hooks. This SO question might help you:
How to require commit messages in VisualSVN server?
Upvotes: 3