vote up 2 vote down star

Somewhat stuck trying to find a newer/better SCC system for my employer. My personal darling is SVN as it's compatible across a good swath of machines and relatively fast, but with past/present experience, it's not as friendly/easy to do branching.

The needs assessment is as follows:

  1. Must be easy to use (CVS is considered easy)
  2. Branches must be first class citizens
  3. Prefer a mechanism like SVN's external property for repositories
  4. Must be multiple OS friendly (linux, unix, Mac, MS Windows)
  5. Proprietary/Commercial might be all right depending on license costs

Git is out as an option as some of the machines are running Vista and it's been a nightmare getting any developer tool to function with some sense of stability on that OS.

I'm also looking at Mercurial but not sure yet if it's going to work right for how the company operates.

flag

Git works fine on Vista. But then, so do all of the other developer tools I use. – Joel Mueller Mar 31 at 16:56
@Joel, What are you using for GIT on Vista? Msys and both tortoiseGit crash and burn just in the setup phase. – David Mar 31 at 17:43

4 Answers

vote up 1 vote down check

SVN is much easier with branching now that mergeinfo properties have been implemented (since v1.5). You just branch and merge away, and it remembers which revisions of which branches have been merged where.

Obviously I'm being a little blasé, but it does make svn worth another look if branching was your main issue with it. No longer do you have to keep text files around with notes on which trunk revisions you've merged into your branch. You just say "merge trunk". Then, you can "reintegrate" a branch automatically

Although it's worth noticing that you need to upgrade your svn server to 1.5 for this to work, the clients are backwards compatible with older servers, but you won't get the new functions. Back up your repo just before you upgrade, obviously.

Oh, and I believe 1.6 is out now, so you may as well jump straight on that. Of course TortoiseSVN (and VisualSVN for Visual Studio users) goes along with it.

link|flag
I was/am using the 1.4x branch of SVN for the longest time so beyond reading some minor docs about merging being improved, I've been in the dark. Is it a night & day difference or just a minor improvement? – David Mar 31 at 16:17
Night and day, for sure. No longer do you have to keep text files around with notes on which trunk revisions you've merged into your branch. You just say "merge trunk". Then, you can "reintegrate" a branch automatically. Wonderful. – Neil Barnwell Mar 31 at 18:06
Although it's worth noticing that you need to upgrade your svn server to 1.5 for this to work, the clients are backwards compatible with older servers, but you won't get the new functions. Back up your repo just before you upgrade, obviously. – Neil Barnwell Mar 31 at 18:07
Oh, and I believe 1.6 is out now, so you may as well jump straight on that. Of course TortoiseSVN (and VisualSVN for Visual Studio users) goes along with it. – Neil Barnwell Mar 31 at 18:08
@Neil might just try a svnadmin dump on a pet project repo and try it out – David Mar 31 at 19:02
show 1 more comment
vote up 1 vote down

My company uses Perforce and I've had a reasonable time with branches, and integrating changes between branches. It will even let you integrate between files that didn't share the same root, if you absolutely insist on it.

link|flag
I've heard of Perforce before but only briefly, I've been a OSS snob for the last decade. – David Mar 31 at 16:31
vote up 0 vote down

Using TortoiseSVN (and likely many other clients as well that I have no experience with), creating branches is a piece of cake, and merging them with other branches or back into the trunk is only slightly more difficult. If you have not tried branching/merging since 1.5, then SVN definitely warrants another look!

link|flag
vote up 2 vote down

I'm biased here, but take a look at Plastic SCM. It's easy to use (much easier than CVS) and it's all about branching.

If you're looking at Mercurial or GIT, maybe you're interested in distributed, aren't you? If so, plastic is still an option since, AFAIK, is the only distributed commercial one together with BitKeeper.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.