views:

297

answers:

1

Just starting out with subversion, have set up repos for 3 current projects and all seems good. Subclipse is nice isn't it!

Anyway, what I'd like to have is a nice timeline showing the commits with comments for these repos. They are all hosted on the same server as the websites that they contain.

I've tried trac, which does what I want, but seems a huge overkill as I don't really want the tickets/wiki/etc, just the timeline.

Any ideas?

+1  A: 

subclipse plugin for eclipse can create a timeline showing revisions, branches, merges, etc. There are probably others as well, though.

http://subclipse.tigris.org/

edit: yup, TortoiseSVN also does this. see http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-revgraph.html

Edit 2: To be fair, neither of the above create timelines per se. They both create revision graphs. The date/time of the commits are available in subclipse (and probably tortoisesvn as well) by hovering over the elements of the graph, (and looking at the revision history table) but strictly speaking they aren't timelines. I'm not aware of anything that produces this information in a timeline format. Hopefully those meet your needs.

Jonathan Fingland
The subclipse history table is fine for now - how do you get the revision graph?
Rich Bradshaw
from within eclipse, right-click the file/folder you want info on, go to the Team submenu, and click on view file history as graph. It can take a little while to generate the graph -- especially for more complex svn histories
Jonathan Fingland