We are migrating from Clearcase to another VCS (probably either SVN or Mercurial). For companies that have made this transition, what factors did they find important in selecting another VCS tool, and what practices did they find eased the transition?
|
|
You need to take into account several criteria like:
In term of migration (to SVN or Mercurial), it will be easier if you were using ClearCase UCM, because the baselines represent clear "timeline" (closest analogy to "revision") you can use to import in your other (D)VCS. |
||
|
|
|
|
A couple to add are: |
||
|
|
|
SVN and Mercurial are both good SCM. Many opensource projects use them. If your choice only narrowed down to these two then what you and your team must consider is: Workflow and workflowHow do you want to do the commits and branching? Distributed or Purely centralized? This is related to the company policy too. Go with SVN if you want everything to be centralized. But this does not mean you can not have central repository with Mercurial. It's quite beneficial if your team choose DVCS like Mercurial because:
Other than that, both are really good as they both have good (enough) performance, good windows support (SVN, Hg) and good documentation/book (SVN, Hg). |
|||
|
|
|
Third party support. Does the system have a mature SCC provider for Visual Studio? (SVN yes, Hg's not mature). Eclipse? Both have good support. Are your developers used to being command-line commandos? Then third-party support / plugins may be a non-issue. |
||
|
|
|
|
In general I would always go with the distributed version control system (DVCS). I haven't tried mercurial but git; but the premise here is the same. If you use a centralized system you are bound to that structure. If you use a distributed system you are not. But just because you can distribute it you don't have to. If it makes more sense in your team to have a single central repository then do it that way. What you should not underestimate is the power of local branches. Branching in a centralized system is rather cumbersome, developer or feature branches are seldom made. Developers rather have multiple working copies or keep unsafe changes in their working copy, to not break the build. With a decentralized system the developer creates local branch works on it. Interrupted by a show stopper bug, he switches back to the master branch fixes the problem, pushes the changes to the central repository and changes back to his feature branch. The workflow is extremely smooth. Additionally the distributed nature of the system makes it a robust one. If the server is down, it is business as usual for the developers, they can even exchange their changes between each other. Finally developers can take work home, on the plane, on the train or where every they like. They never loose the VCS capability and can make proper commits. The result is that the behavior of the developers in regards to the VCS is defined by company policy, not the technology and you can change you policy at any time you like. |
||
|
|
