6

Is there a way to generate release notes from Subversion comments? Basically I'd be happy if I could just capture the information that you see if you view the log. But if I copy and paste from the log into a text editor, I get a lot of other information I don't want (the lists of files modified with each revision).

ROMANIA_engineer
  • 54,432
  • 29
  • 203
  • 199
Meg
  • 157
  • 3
  • 8

2 Answers2

4

you should check out svn2cl, since you likely want to generate these release notes between two revisions, where just redirecting the log will get all the messages - but may get more of them than you actually want.

thekbb
  • 7,668
  • 1
  • 36
  • 61
2

You can use the CL client and run

svn log > log.txt

and you'll only get the log messages without any additional info.

Stefan
  • 43,293
  • 10
  • 75
  • 117