vote up 3 vote down star

I guess I'm really after an aid to help people who forget, Cruise Control sends out the details of commits to everyone, so people are keen to add a meaningful comment, but sometimes forget.

flag
What CVS are you using? – DilbertDave Nov 11 '08 at 16:03
That's pretty useless, your time is better spent convincing people to write meaningful comments. Else you'll just end up with comments with 5 spaces or which say "Damn Dan". – Vinko Vrsalovic Nov 11 '08 at 16:03
@DilbertDave probably CVS. – Chris Charabaruk Nov 11 '08 at 16:07
@Chris: CVS is sometimes used as a generic term (worth checking) ;-) – DilbertDave Nov 11 '08 at 16:08

5 Answers

vote up 7 vote down check

You can write a pre-commit hook that checks this. This requires access to the CVS server.

link|flag
vote up 9 vote down

You will also want a human monitoring the comments that people are adding, though.

Or expect a flurry of "foo", "checkin", "commit", "changed code" comments as people try and bypass your check.

In a past life, we also enforced the mention of a defect/task ID, and checked that ID existed in the task tracking system...

link|flag
"bug fixed" is my personal favorite – tloach Nov 11 '08 at 16:04
"new stuff" is so handly sometimes :P – David Santamaria Nov 11 '08 at 16:06
"added feature" is one I've used a few times, myself. – Chris Charabaruk Nov 11 '08 at 16:09
@David: I would be more worried if I saw "old stuff"... ;) – tloach Nov 11 '08 at 16:12
How about "agfagfagf"? – Nemanja Trifunovic Nov 11 '08 at 16:13
vote up 4 vote down

Rather than enforce comments through your CVS, just tell your developers that you may be doing spot checks on the comments, so please put in useful comments when you check in your code. While I agree that comments in the code itself are more useful, sometimes it is useful to know what the purpose of a code check-in was (e.g. fixed a bug in rounding tax amounts on invoices). However, this can be easily abused, with someone constantly checking the comments, which wastes a huge amount of time. This way it relies on the honor system, and the fact that no-one wants to be singled out for not putting in the one-line comment that you requested.

link|flag
I think it's still worth enforcing, as well as doing spot checks. It stops people forgetting to add a comment at all. – Paul Nov 11 '08 at 16:20
KISS - auditing is easy. – Kenny Nov 11 '08 at 16:21
vote up 1 vote down

The verifymsg file looks like what you want, although I've never tried it myself. If the commit comment doesn't match certain criteria, the commit is aborted.

link|flag
vote up -2 vote down

We use Subversion and Tortoise and it is possible to do this.

Basically you need to set the tsvn:logminsize parameter on the trunk folder. This will allow you to set a minimum length for a comment (anything > 1 will result in mandatory comments)

link|flag
First, that's a Subversion-only solution, and second, it only works if someone is using TortoiseSVN. – Chris Charabaruk Nov 11 '08 at 16:07
Since he's using CVS, this won't actually do him any good... – Jason Coco Nov 11 '08 at 16:08
As already stated CVS is sometimes used as a generic term (worth checking) ;-) – DilbertDave Nov 11 '08 at 16:09

Your Answer

Get an OpenID
or

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