Migrating away from Clearcase

后端 未结 7 1678
北海茫月
北海茫月 2020-12-20 17:32

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 sel

相关标签:
7条回答
  • 2020-12-20 18:00

    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 workflow

    How 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:

    • Everyone has their own local copy. This enables them to work from home and do local commits
    • Everyone can do local branching in their local machine. Do not fear about merging between revisions, Mercurial has good support with merging and relatively easy compared to SVN.
    • Not everyone must have commits access, because you can appoint someone to be a gatekeeper which pulls revision from other developer's machine. This enables you to do code review before submitting the code to the central repository.

    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).

    0 讨论(0)
提交回复
热议问题