TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What are the challenges to switch version control systems in your org?

4 pointsby jbottover 6 years ago
I’ve noticed a lot of interest in monorepo-type version control and CI systems lately. Git doesn’t seem to be a good solution to this problem, but it does have a lot of momentum as the standard. If a better version control system existed, what would be necessary features to switch? What would be the technical and social challenges to switch in your organization?

2 comments

serenover 6 years ago
I never worked in an organization where all the history was transferred to the new system (because of cost or technical hurdles).<p>So basically, even if the 2 systems are available for some times, the old server end up being decommissioned. So it means you have effectively lost the older history. This is not always that bad, but some times you&#x27;d like to know why something was added&#x2F;designed that way because it does not makes sense, and you cannot use source control to help you. So each change of system incurs a loss of knowledge.<p>I don&#x27;t say it is a good idea to have the same system for 30 years but at least you know where you are coming from.<p>The second point is that during the transition phase you have to maintain the 2 systems in parallel. Even you don&#x27;t need to touch the old system often, every patch added to the old one need to be ported to the new one, and since systems are often not compatible (and don&#x27;t play with the same kind of data structures), you resort to patch&#x2F;manual merge that are kinda error prone, so this is a bit dangerous. It would be technically possible to import the legacy systems in the new tools, but it is often not done either.<p>So a perfect version control system would need :<p>- to effortlessly import all the legacy history<p>- to be 100% compatible with the old system to be able to do merge&#x2F;compare across systems.<p>Frankly that sounds like impossible requirements. So most of the time it is more an organizational issue (when to do the cut off, training, etc) than really a technical issue due to the tooling.
gus_massaover 6 years ago
Somewhat related: A few years ago, Kiln (FogBugz) decided was supporting an online version of Mercurial and decided to support Git too. They made it in a way that you can use any repository with both system at the same time. Probably there are better tools now. I guess that in the future someone will just make a script for the transition from git to whatever.<p><a href="https:&#x2F;&#x2F;www.joelonsoftware.com&#x2F;2013&#x2F;03&#x2F;11&#x2F;town-car-version-control&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.joelonsoftware.com&#x2F;2013&#x2F;03&#x2F;11&#x2F;town-car-version-c...</a>