How to concatenate all commit messages from subversion into one text file with no metadata?
Posted
by user144182
on Stack Overflow
See other posts from Stack Overflow
or by user144182
Published on 2010-06-10T23:22:33Z
Indexed on
2010/06/10
23:32 UTC
Read the original article
Hit count: 242
I would like to take all the commit messages in my subversion log and just concatenate them into one text file.
Each commit message has this format:
- r1 message
- r1 message
- r1 message
What I would like is something like:
- r1 message
- r1 message
- r2 message
- r2 message
- r3 message
[...]
- r1000 message
Update
I thought the above was clear, but what I don't want in the log is this type of info:
r2130 | user| 2010-03-19 10:36:13 -0400 (Fri, 19 Mar 2010) | 1 line
No meta data, I simply want the commit messages.
© Stack Overflow or respective owner