show/hide this revision's text 2 add cleaner history comment

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.
So the benefice (a side-effect actually) here is a natural backup through data replication, while maintaining a central code base.

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.

That means even with repository only replicated internally (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.
(every integration, homologation, pre-productions tests would only runs from codes published into that central repository).

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

show/hide this revision's text 1

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.
So the benefice (a side-effect actually) here is a natural backup through data replication, while maintaining a central code base.

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.

That means even with repository only replicated internally (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.
(every integration, homologation, pre-productions tests would only runs from codes published into that central repository).