logo
Published on john.parnefjord.se (http://john.parnefjord.se)

Create ChangeLog from Subversion

By johnp
Created 2009-02-03 11:27

This is just a note to myself so that I can cut and paste the snippet that generates a ChangeLog from a Subversion repository. To generate a ChangeLog in HTML from the last 14 days run this and save the resulting file in specific place and with a specific name:

svn2cl --html --title='Project changelog for the last 14 days' --output=/var/www/domain.net/docs/status/changelog.html -i -r "HEAD:{`date -d '14 days ago' '+%F %T'`}" https://domain.net/svn/project [1]

Put this job in a script and let crontab regenerate the change log at certain intervals. Most question reagrding the use of svn2cl can be found using:

svn2cl --help

Source URL:
http://john.parnefjord.se/node/53