views:

109

answers:

3

I'm in Quality Assurance and use Fisheye to track checkins to CVS. What other options do people use?

We have tens of thousands of files and have plans for migrating to Team Foundation Server's code management tool 'at some point' When we do that, there will be lots of information that will be available.

A: 

You could have a mail sent to you at each commit... Look into the CVS Book.

Xavier Nodet
A: 

Sorry, this doesn't help with CVS, but I'd recommend switching to subversion, which is designed to be a CVS replacement. Then you can use trac to follow checkins, as well as manage change tickets and documentation. It was well worth the effort in my own projects.

But if you have to use CVS, there's always CVSweb

DGM
+2  A: 

ViewVC provides a nice web interface to CVS (or SVN) and is reasonably easy to setup. It does not provide the same functionality as fisheye, however. I haven't tried the integration w/ a SQL DB backend though, I believe that will add some fisheye-like capabilities.

CVSTrac also provides a web interface, wiki, ticket system, and other features. I haven't set it up on our repository, but it does provide some fisheye-like features as well.

Zathrus
We did go through with setting up the MySQL backend, and it's pretty useful. It was a bear to put together though, and I ended up having to hack the python quite a bit to get it to work.
Bob King