Open-Source Version Control
April 10, 2004 8:34 AM Subscribe
Can some recommend an open-source version control system that will run locally? CVS seems a bit unwieldy, and other online reviews are geared toward large applications/development groups. Windows based if possible, but Linux is fine, too.
there's a useful page somewhere that compares the systems available. unfortunately my email is down so i can't look it up, but maybe some google-fu will find it.
posted by andrew cooke at 9:00 AM on April 10, 2004
posted by andrew cooke at 9:00 AM on April 10, 2004
I'll second majick's opinion. I use CVS locally for smaller projects and it works well. I don't think I'd want anything else, as like he says, everything else is larger.
(Well, I might consider subversion, but I haven't gotten around to testing it out yet.)
posted by thebabelfish at 9:03 AM on April 10, 2004
(Well, I might consider subversion, but I haven't gotten around to testing it out yet.)
posted by thebabelfish at 9:03 AM on April 10, 2004
GNU Arch (also have a look at the wiki) is not only more powerful than CVS or Subversion, but it has the advantage of requiring no special server. You can write to an archive using local file access, sftp, or http with webdav.
It works best on Linux/Unix currently, but several developers are working on Win32 support.
posted by Galvatron at 10:57 AM on April 10, 2004
It works best on Linux/Unix currently, but several developers are working on Win32 support.
posted by Galvatron at 10:57 AM on April 10, 2004
If all you need is simple checkout, checkin, and revert control over some text documents on Unix you should take a look at RCS. You might have to blow the dust off the man pages first. :-) I use Perforce at work, and Subversion at home, and am very happy with both.
posted by Voivod at 4:16 PM on April 10, 2004
posted by Voivod at 4:16 PM on April 10, 2004
i prefer perforce, which is not open source, but you can have two users for personal use. it runs on just about any platform you are likely to encounter, and has a nice gui for windows.
i haven't used the linux gui much, myself, because our we would have to upgrade the perforce server version -- and we are satisfied with the current state
posted by lescour at 4:42 PM on April 10, 2004
i haven't used the linux gui much, myself, because our we would have to upgrade the perforce server version -- and we are satisfied with the current state
posted by lescour at 4:42 PM on April 10, 2004
"...it has the advantage of requiring no special server..."
Arch looks pretty good, and I hear it's approaching the point where it's usable for production purposes, but this, at least, is not an advantage it holds over CVS.
I don't know about SVN, but I can say with absolute confidence that CVS does not require a server whatsoever. In fact, the client/server modes were added later in its life, and can be a pain to deal with because they are "tacked on" features. In fact, I've got a repository here at the house which is inaccessible except from the machine it sits on, because there's no pserver on that box. It "runs locally" as grefo's asking for.
In the olden days, CVS used to be a wrapper for RCS, which has no concept of a server at all; everything's done through the filesystem.
posted by majick at 10:26 AM on April 11, 2004
Arch looks pretty good, and I hear it's approaching the point where it's usable for production purposes, but this, at least, is not an advantage it holds over CVS.
I don't know about SVN, but I can say with absolute confidence that CVS does not require a server whatsoever. In fact, the client/server modes were added later in its life, and can be a pain to deal with because they are "tacked on" features. In fact, I've got a repository here at the house which is inaccessible except from the machine it sits on, because there's no pserver on that box. It "runs locally" as grefo's asking for.
In the olden days, CVS used to be a wrapper for RCS, which has no concept of a server at all; everything's done through the filesystem.
posted by majick at 10:26 AM on April 11, 2004
You're right majick, I wrote that poorly. I was trying to show the advantage over SVN in particular, which I'm pretty sure requires a server for communicating with the database back-end. I agree that CVS is about as simple as you can get. (Of course, I would also argue against using CVS because of its poor branching capability.)
posted by Galvatron at 3:46 PM on April 11, 2004
posted by Galvatron at 3:46 PM on April 11, 2004
This thread is closed to new comments.
What's unweildy about CVS in local (not pserver) mode? Maybe I can make a suggestion if I know what you're finding wrong with CVS, but I think you're going to find that just about everything out there is more heavyweight than CVS!
posted by majick at 8:46 AM on April 10, 2004