Reputation: 767
I have a thesis project that requires a project log to be submitted along with my final paper. As part of that log I'd like to include the Bazaar revision log and all the messages that it contains but I'll need to have them in a printable format.
I was unable to find any export feature in the Bazaar Explorer tool but I hope it's still possible to do somehow. Any thoughts?
Thanks!
Upvotes: 0
Views: 208
Reputation: 5505
For completeness, you can use the bzr-xmloutput plugin to get an xml version and then process that into exactly what you want.
Upvotes: 2
Reputation: 21473
You can get log in the text format using command-line: bzr log > log.txt
or via Bazaar Explorer with running All Commands dialog and select log
command there and then copy the log from status window. Read the help for log
command to find the appropriate options. You may want to use -n0
option and maybe --forward
one.
Upvotes: 3