Using source control to create release notes

release-managementsvnversion control

Lets say i have an off the shelf eccomerce cart. I put all the code inside subversion. I start to make changes and check the code changes back in.

is it possible to then display each "check in" with the developer messages so that i can make release notes?

I would like to use this for actual quoted time.

Best Answer

As noted, svn log will get you this answer. But this really isn't suitable for time tracking -- just about all accounting systems need a hole for restatement, editing a svn commit description can be tricky if not impossible due to post-commit hooks.

You might want to look at something like redmine which integrates with SVN and has a time tracking feature built-in.

Related Topic