Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ClearCase for source code control?

I have never used ClearCase, but have used Subversion and for a short period of time Perforce. The IT department in our company officially supports ClearCase and some people have their code checked in it and some people sort of use it as a back up storage.

I am still undecided on weather to use ClearCase itself or setup my own repository using Subverison. It will be a two or maximum of three person developer team. From people whom I have heard from, I got this perception that ClearCase is complex and is not worth learning as it might not increase the productivity. Is it true or is it wrong?

Thanks...

like image 524
Manoj Avatar asked Aug 30 '10 11:08

Manoj


People also ask

What is ClearCase tool used for?

ClearCase is a software configuration management tool used for version control. It manages changes across development lifecycles, from design to code to test. It is one of many version control systems available today.

Is ClearCase better than Git?

ClearCase merging is more efficient. Git merges can run into some issues, particularly if you have multiple teams working in the same repository.

Is ClearCase still supported?

ClearCase and ClearQuest discontinued support for platforms and software, and component deprecation in 2020.


6 Answers

Assuming you're limited to the two version control systems (VCSs) you mentioned, Subversion (SVN) will be clearer, easier and better supported in almost every respect, until you get to the point where you must support multiple branches.

When you need to merge code (e.g. bug fixes) into multiple versions, support parallel development of any significantly sized features or by a slightly larger team of developers then ClearCase, and more specifically the ability to develop in branches and merge them together easily, will become worth all the extra pain and complication - especially if ClearCase is already being managed for you.

Experience

I've used ClearCase with between one person (me) and more than 400 people, It has many day-to-day annoyances, usability issues and faults but it consistently allows us to get work done together. At all times the ClearCase installation had dedicated full time administrators.

I've used Subversion by myself and with one other person, and it works great day-to-day (with no administrators except for me) but it very occasionally but consistently becomes a significant source of frustration due to the fact it can't handle any significant branch and merge situations.

Why is SVN poor at supporting parallel development and branching?

SVN fails in the support of parallel lines of development because it has very weak automated support for merging branches together. In contrast all the other VCSs that I write about here have good support for merging branches together; for the common cases it is a zero effort operation.

Branching is the way that version control systems model concurrency in human life (e.g. two developers work on two different issues in parallel, or one developer who has multiple issues open at the same time). But branching is useless if you can't easily combine everyone's work into a coherent whole!

Branching can happen explicitly (in that they are named and understood by the VCS) or implicitly (as a normal copy of the files or a checkout). SVN supports both, but in SVN branching is usually done in a implicit limited fashion. Each check out is a branch but all branches are forced to be synchronised on every commit/update. This happens because SVN does not support easy merging of explicit branches and therefore explicit branches are rarely created.

As you're forced to synchronise with each other at every commit this decreases the potential parallelism within the team. It also leads to some less than ideal development practices as you cannot effectively use the version control system for your own day-to-day development needs. It ends up being too hard to try out different ideas in your own personal branches and you cannot make multiple commits while refining a feature. You are also more likely to commit too early and end up breaking everyone else's work until you fix the problem in your last commit.

The other major issue is that, since merging explicit branches is not well supported, SVN does a poor job of helping you move code changes between people and between branches. Imagine trying to fix a bug in both the release branch and the development branch; alternatively imagine two developers are working on a related feature and they both need to have each others changes, but only at controlled points. Using SVN you can accomplish these tasks but the VCS does very little to assist you and you must be prepared to manually prepare and maintain patches or ship around files.

In the other VCSs you can ask the VCS to merge a branch containing a bug fix or a feature into various other branches. At the end of the day all these branches (which themselves contain the contents of other branches) can then be merged back into the main branch. More often than not most of this will be handled automatically and correctly by the VCS, whereas with SVN having this kind of automatic flexibility and parallelism is almost unimaginable.

Large teams do get work done without strong support for automated merging but this places a greater burden on both the individuals and on team organisation, communication and process.

On the flip side, the downside of easy branching and merging is that you must be organised and rigorous about merging changes together at regular intervals as it doesn't happen automatically any more.

Other Options

Now if we take a step back and consider other systems, assuming your repository is mostly text based and relatively small (less than a few hundred MBs), I would suggest you seriously consider using BZR. BZR is at least as easy to use as SVN, especially if you already know SVN. It is also at least as powerful as ClearCase in all important respects from a developer's perspective; it supports multiple streams (branches) of development and has good support for merging them back together. At the same time it can support a centralised style of development as necessary.

Although I have no experience with it I should also mention that you can use the BZR tool to access an SVN server with bzr-svn and this may give you much of the benefits and merge capabilities of BZR while still having the advantage of hosting your code on the widely understood SVN platform.

While I just suggested BZR, in the world of open source distributed version control systems (DVCSs) many people appear to be going with GIT. I didn't suggest this though since it forces a much steeper learning curve on users coming from an SVN background and I think many teams in the wild would prefer the better Windows support and ease of use of BZR above the scalability and speed benefits of GIT.

If you choose to go with a DVCS like BZR or GIT you probably don't need to get too hung up on exactly which DVCS you start using. The widely used systems all support exporting and importing between each other and can all at least import from SVN.

like image 106
Jared Avatar answered Oct 18 '22 11:10

Jared


I'd go for subversion. It has a cleaner interface and is more intuitive than ClearCase. In my company people often struggle learning ClearCase and teams are migrating to svn. Another good reason to use svn is that it's free.

like image 39
Leonid Avatar answered Oct 18 '22 10:10

Leonid


Stay away from it! It has some features that svn is missing (like activities) but for sure with 3 people on your team is not worth.

like image 43
Gaetano Mendola Avatar answered Oct 18 '22 11:10

Gaetano Mendola


Update November 2011: more than a year later, I would really advise against ClearCase.

It is clear now, since Rational ClearCase has been bought by IBM (2003), that there won't be any major evolution to that 25+ years old product.
The latest features might still improve a bit (see release notes for 7.1.1), and atomic checkins are finally part of the product, but the underlying communication protocol between client and server is still slow and unable to scale.

Actually, ClearCase has been rewritten from scratch and is called Jazz source control, part of the Rational Team Concert product.
That new version (RTC 3.x) is actually pretty good, much faster than ClearCase, and offer an interesting way of isolating one's development, allowing for private commits.

Today, DVCS like Git are also a good alternative, but as I have detailed in this question, it isn't a trivial process for a large enterprise.


Initial answer: August 2010:

ClearCase is not complex, but it is quite different from SVN. And quite slow ;)
See ClearCase introduction.

I have already manage to have other repos working tree working directly within a snapshot view.

For large projects with complex merge workflow, ClearCase (especially ClearCase UCM) can be worth it.
For a simpler project (in term of merge workflow), SVN is enough.

See also:

  • SVN vs. ClearCase functionality
  • Moving from SVN to ClearCase
  • SVN to ClearCase export
like image 43
VonC Avatar answered Oct 18 '22 12:10

VonC


If you do not have dedicated ClearCase admins, do not ever consider doing it. It really has a very steep learning curve. I am constantly stumbling over problems with it. Writing Config Specs manually is so error prone it is untrue, plus, you can easily break anything just by introducing a mis-spelling. Also, you will end up in label-hell, since you need to label anything you need to get back to, since there is not option to give you a specific state of any time unless you labeled it.

I never had any of the abovementioned problems with SVN. I also did some branching/merging with SVN and also with CC. No problems with SVN, a lot with CC. Using CC turns a lot of things that should be No Events into big problems. Again, that is with no admins - so a company that forces CC on everyone but gives no support. Don't ask which one..

CC can be used effectively, but.. I would say it is hardly ever worth the extra effort. SVN just works easily for mosts scenarios, which probably is the reason it is still around with GIT and Mercurial working so well.

like image 34
Andreas Reiff Avatar answered Oct 18 '22 11:10

Andreas Reiff


IBM is not going to suppoort ClearCase/ClearQuest any more, they are forcing thier users to switch to RTC (Rational Team Concert) which is much better than CC/CQ and has completely different ideology (Jazz). So, I would not recommend you to use this obsolete, outdated and ugly as hell (with UI from WIN 3.1 times) stuff.

like image 40
Bashir Magomedov Avatar answered Oct 18 '22 11:10

Bashir Magomedov