The beauty of open source is that it makes code freely available. The curse is that, without some method of organizing it, code development can devolve into chaos. CVS, the Concurrent Version System, is an open source tool for managing source code, designed to allow multiple users to work on the same file at the same time, using a shared directory. Under CVS, multiple users can check out files from a directory tree, make changes, and then commit those...