Minor convenience script to extract commit comments from the svn log. Useful when writing the changelog entry for a release.

- Legacy-Id: 1504
This commit is contained in:
Henrik Levkowetz 2009-07-24 14:47:25 +00:00
parent 46cda1d9b1
commit 9aa32a965d

2
test/commitlog Executable file
View file

@ -0,0 +1,2 @@
#!/bin/bash
svn log $PWD -r HEAD:BASE | sed -n -e 's/^/ * /' -e '1,/^ \* Set version info and settings back to development mode/p' | egrep -v -- '^ \* (----------|r[0-9]+ |$)' | head -n -1