Hopefully everyone is now using some form of version control these days… I’m curious how you comment your check-ins? I found this interesting post: Subversion Check-in Comment - Great Practices where the author suggests labeling your changes with the following categories:
Added,Changed,Fixed,Deleted
So your comment would look like:
ADDED: I added a new form to the checkout process.
FIXED: I fixed Bug #12345 (link to ticket system).
DELETED: Banner image from header.
I’ve been doing something similar myself and was curious what others are doing? I poke around some open-source projects occasionally and don’t really find any consistent standard. Some people dump tons of information, some none at all. What do you do?
Update: This post by Features of the Subclipse Commit Dialog has some great tips about the commit dialog in Subclipse. I’m tinkering around with setting up a comment template now… He also has a good one about regarding bug tracking integration here: Integrating Subversion with your Issue Tracking System
Possibly Related:

The Version Control Check-In Comments by Jim , unless otherwise expressly stated, is licensed under a Creative Commons Attribution-Noncommercial-Share Alike 3.0 United States License.

@Jim
Wow, I’ve been using Subversion for years now, and am usually pretty good at entering comments on checkin. Really like the idea here to start with those keywords, makes tons of sense. Thanks for the heads up…