We've got VisualSVN set up as our Subversion server on Windows, and we use Ankhsvn + TortoiseSVN on our client workstations.
How can you configure the server to require commit messages to be non-empty?
|
8
|
We've got VisualSVN set up as our Subversion server on Windows, and we use Ankhsvn + TortoiseSVN on our client workstations. How can you configure the server to require commit messages to be non-empty?
|
|||
|
|
|
|
SVN uses a number of hooks to accomplish tasks like this.
You want the pre-commit hook. You can write it yourself in just about any language your platform supports, but there are a number of scripts on the web. Googling "svn precommit hook to require comment" I found a couple that looked like they would fit the bill: |
||||||||||
|
|
|
I believe you'll have to setup a pre-commit hook that will check for the message. Indeed just by googling the first result I got was a perl pre-commit script to do exactly what you intended. |
|||
|
|
|
|
The technical answers to your question have already been given. I'd like to add the social answer, which is: "By establishing commit message standards with your team and getting them to agree (or accept) reasons why one would need expressive commit messages" I've seen so many commit messages that said "patch", "typo", "fix" or similar that I've lost count. Really - make it clear to everybody why you'd need them. Examples for reasons are:
Hope that helps, additionally to the technical answers about precommit hooks. |
||
|
|
|
What VisualSVN offers you to enter as hooks are "Windows NT command scripts", which are basically batch files. Writing if-then-else in batch files is very ugly and probably very hard to debug. It will look something like the following (search for pre-commit.bat) (not tested):
You need a grep.exe on the path, %1 is the the path to this repository, %2 the name of the txn about to be committed. Also have a look at the pre-commit.tmpl in the hooks directory of your repository. |
||||||
|
|
|
Good question and good solution! By the way, how can we modify commited files in start commit or pre-comit hook? |
||
|
|
|
Prior to adding commit hooks to my server, I just distributed svnprops to the tortoisesvn clients. So, as an alternative: In tortoiseSVN -> Properties property name - add/set tsvn:logminsize appropriately. This of course is no guarantee on the server as clients/users can opt not to do it, but you can distribute svnprops files if you like. This way users don't have to set their own values - you can provide them to all users. This also works for things like bugtraq: settings to link issue tracking stuff in the logs. |
||
|
|
|
|
Use this on Windows:
You'll need a copy of grep, I recommend the gnu tools version. |
||||||
|
|
|
tried this but no luck:
also, how to check for comment length is more important than no comment at all! |
||
|
|
|
Here's a Windows Shell JScript that you can use by specifying the hook as: %SystemRoot%\System32\CScript.exe //nologo <..path..to..script> %1 %2 It's pretty easy-to-read, so go ahead an experiment. BTW the reason to do this in JScript is that it does not rely on any other tools (Perl, CygWin, etc) to be installed.
|
||
|
|
This is ours. No extra tools required. I'm glad you asked this question pre-commit:
|
||||||
|