**SvnTrac** CVSTrac's CVS repository now has support (via ScmTrac) for using Subversion as a SCM repository backend. #278 and #445 contain most of the details and discussion. Most of the code was written by Nemanja Corlija with infrastructure support by _cpb_. It seems stable, functional and mostly feature complete. In terms of performance, it's still quite a bit slower than CVS. There's also some issues with how the results of "svn copy" are handled. If you're going to evaluate Subversion support, please track CVS HEAD and plan on doing a repository rescan (or even reconstruction) at some point in the near future. In spite of these warnings, there _are_ {link: http://www.ceamus.com/cgi-bin/trac/timeline people} actually {link: https://oralux.net:8010/timeline using} SvnTrac without apparent problems. Installation and configuration works about the same as with CVS. *Installing* *: DownloadCvstrac from CVS *: build CVSTrac, following the {link: /cvstrac/getfile/cvstrac/COMPILING COMPILING} instructions *: build SvnTrac: make APPNAME=svntrac all *: You now have a _svntrac_ executable. Copy to wherever you want. *Configuration* *: Initialize the database: svntrac init /path/to/repository *: Start the server: svntrac server 8008 /path/to/repository *: Point your browser to http://localhost:8008/ *: Log in as *setup/setup* and configure. As with CVSTrac, you'll need to configure the repository path and reread the repository. Note that this takes a long time (i.e. I get about 200 revisions/minute) and your browser may time out. *: You're done. Use it like any other CVSTrac installation *Notes* *: As with CVS, the Subversion support _does not_ attempt to alter the repository itself. That means you should be able to safely play around without trashing your data. *: SvnTrac checkin numbers are identical to the Subversion revisions. You'll find this very convenient. *: The Browse functionality follows Subversion practice for branching and tagging. That is, where in CVS all branches and tags are associated with a particular file, in Subversion they're separate trees. This shouldn't bother Subversion users. But it might increase the size of the underlying sqlite database quite a lot. You have 1 record in the table _file_ with CVSTrac if you have a file foo.c with maybe 20 tags, but you will have 21 records with SvnTrac. One entry for each tag and another one for the trunk. *: SvnTrac was the logical naming choice. Unfortunately, this was also the original name of the {link:http://trac.edgewall.org Trac} project. Don't confuse the two. *: No attempt has been made to migrate from CVS/CVSTrac to Subversion/SvnTrac. It might be possible to migrate tickets and reports, but associations between wikis, tickets and checkins could be confused unless {link: http://cvs2svn.tigris.org/ cvs2svn} gets really lucky.