• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

CVS server

 
Ranch Hand
Posts: 2676
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can anyone recommend pretty good CVS server software that is free? I would prefer something java based that I can run off of Tomcat, but anything that I can run on the same box as my web server would be acceptable.
 
Ranch Hand
Posts: 399
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Never heard of a java cvs server implementation.
CVS is usually run under Unix, but there is a NT version that works for some purposes. Most people seem to prefer the Unix version for production development, and maybe CVSNT where they don't have Unix or Linux, like home.
Check
www.cvshome.org
www.cvsnt.org
 
Saloon Keeper
Posts: 27807
196
Android Eclipse IDE Tomcat Server Redhat Java Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
CVS itself is written in C, and actually, it doesn't run UNDER a web server, but is in fact a server itself, often accessed at tcp/ip port 2401 (depending on how you login to it). There's 2 java CVS client programs, but if anyone's written a CVS-style server in Java, I don't know about it (you could always check sourceforge.net).
There's a cgi application called cvsweb that allows users to browse the contents of a CVS archive via a web server. The one I'm running's written in Perl.
 
reply
    Bookmark Topic Watch Topic
  • New Topic