Why should a business use distributed version control? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T14:37:00Zhttp://stackoverflow.com/feeds/question/702892http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/702892/why-should-a-business-use-distributed-version-control8Why should a business use distributed version control?skiphoppy2009-03-31T20:27:11Z2009-04-01T17:26:44Z
<p>It seems that many people read about distributed version control and implicitly understand why it is a good thing for open source development, with many distributed developers all acting independently and in accordance with their own choices instead of mandate from management. But from this impression many people form the idea that DVCS is useful <em>only</em> in an open-source environment; they can't see how it would help an organization that releases a proprietary product and doesn't make its version control system accesible externally, or how it would help a single developer.</p>
<p>What are some benefits a business can see if it chooses to use distributed version control such as git, darcs, or Mercurial instead of centralized version control such as CVS or Subversion?</p>
http://stackoverflow.com/questions/702892/why-should-a-business-use-distributed-version-control/702945#7029454Answer by VonC for Why should a business use distributed version control?VonC2009-03-31T20:36:34Z2009-04-01T17:26:44Z<p>First of all, a DVCS does not prevent a centralized code management: you still can set one repository as the "reference" one, all developers pulling from it.<br />
So the benefice (a side-effect actually) here is a natural backup through data replication, while maintaining a central code base.</p>
<p>But the true benefice comes from inter-projects cross-development: i.e. when you need developments "from the other team, from the other project", in order for your work to go forward: you can easily pull one one their working branch into your repository (by tracking it), without having to wait for them to publish it officially in the central repository. </p>
<p>That means even with repository only replicated <em>internally</em> (within a company), you still get the main advantage of a DVCS, namely the ease of tracking, pulling and merging branches from local and diverse repos, while having a main base where to publish your code for the rest of the development life-cycle.<br />
(every integration, homologation, pre-productions tests would only runs from codes published into that central repository).</p>
<p>One can also see with a DVCS managed that way a natural "cleaning" process (only what is "valid" - at least unit tested for instance - gets to be published into the central repo), with a cleaner history (all the intermediate commits can stay in the topic branches of the local repositories).</p>
http://stackoverflow.com/questions/702892/why-should-a-business-use-distributed-version-control/702963#7029630Answer by Ken for Why should a business use distributed version control?Ken2009-03-31T20:41:30Z2009-03-31T20:41:30Z<p>I don't see why it's any better for open-source development. Commercial projects have lots of developers working on different things at the same time, too. Does your "mandate from management" tell you which files to edit and when?</p>
http://stackoverflow.com/questions/702892/why-should-a-business-use-distributed-version-control/702965#7029651Answer by dwc for Why should a business use distributed version control?dwc2009-03-31T20:41:53Z2009-03-31T20:41:53Z<p>One thing I've noticed using Mercurial is that it's changed the way I work, even locally on my workstation. The idea that every copy is a complete, stand-alone repo lends itself to keeping different copies with different work and merging them together or into the "common" repo. That's nice because patch sets for different things stay together, as well as keeping the work itself separate. These things can be done in some manner in traditional systems, but in Mercurial it's natural. Offering more flexibility in organizing workflow has other nice payoffs as well.</p>
http://stackoverflow.com/questions/702892/why-should-a-business-use-distributed-version-control/703441#7034419Answer by Dustin for Why should a business use distributed version control?Dustin2009-03-31T23:10:24Z2009-03-31T23:10:24Z<p>The argument seems backwards to me.</p>
<p>Given that a centralized revision control system is just one of many use cases of a distributed system, how does applying such a restriction benefit the company?</p>
<p>I know from experience that when a p4 server gets slow or breaks or you get too far away from it or something, <em>everybody</em> who's using it has to stop working.</p>
<p>People like to treat the "plane" argument as a bit of a strawman, but I've been there where it really mattered. On site at an interop event or customer demo where we have to build something <em>now</em> in an environment with limited network support and all that work has to come back <em>and</em> I want to be able to revert when I make mistakes.</p>
<p>The two arguments that I've heard don't ring well to me:</p>
<ol>
<li>can't take all the code and run.</li>
<li>locking</li>
</ol>
<p>Number 1 is just stupid. Maybe it's <em>slightly harder</em> to get the full history (and if I can't, there's not a revision control system anyway), but when it comes to the kind of fear we're talking about here, I can just grab the latest revision and it's just as dangerous.</p>
<p>Number 2 really seems like trying to use the wrong tool for the job. I used to get anti-CVS arguments from RCS users because they really thought you should lock <em>every</em> file <em>every</em> time to prevent two people from, I don't know, working.</p>
<p>Communication is out of band. If you have large, unmergeable files, it's OK to talk about them, I think. IMO, many of the people with this problem don't want a revision control system, but a snapshotting filesystem (zfs, 9fs, Drop Box, etc...).</p>
<p>In general, though, I don't understand why people even ask the "Why should I give my developers tools that are cheaper, faster, more reliable, more robust, and make them more productive?" kinds of questions.</p>
http://stackoverflow.com/questions/702892/why-should-a-business-use-distributed-version-control/703490#7034904Answer by Jesse Brown for Why should a business use distributed version control?Jesse Brown2009-03-31T23:34:40Z2009-03-31T23:34:40Z<p>I agree with VonC, but would like to add that (in git at least) it's trivial to make new branches where I can easily work on experimental code or prototypes that I don't necessarily want to share with the rest of the repository's users. This helps keep the central repository clean (if you use one) and I think frees up developers to try things they might not otherwise try in a system where you risk putting experimental code into the central repository. </p>
<p>I've also noticed that working in multiple branches with git is a lot more productive since swapping between branches is quick and I don't have to multiple branches checked out at once in separate directories.</p>
http://stackoverflow.com/questions/702892/why-should-a-business-use-distributed-version-control/703939#7039392Answer by Jeremy Wall for Why should a business use distributed version control?Jeremy Wall2009-04-01T03:22:02Z2009-04-01T03:22:02Z<p>With git there are a number of bridges to traditional central repository based systems.</p>
<p>I find git to be a superior client for svn than svn itself for instance. So if the company insists on using a Central Repository system you can still get the personal benefits of git while still maintaining the central repository.</p>