Sponsored Links
-->

Thursday, January 25, 2018

Centralized vs Distributed Version Control in 90 seconds - YouTube
src: i.ytimg.com

In software development, distributed version control (also known as distributed revision control) is a form of version control where the complete codebase - including its full history - is mirrored on every developer's computer. This allows branching and merging to be managed automatically, increases speeds of most operations (except for pushing and pulling), improves the ability to work offline, and does not rely on a single location for backups.

Software development author Joel Spolsky, described DVCS as "possibly the biggest advance in software development technology in the [past] ten years."


Video Distributed version control



Distributed vs. Centralized

Distributed revision control systems (DVCS) takes a peer-to-peer approach to version control, as opposed to the client-server approach of centralized systems. Distributed revision control synchronizes repositories by exchanging patches from peer to peer. There is no single central version of the codebase; instead, each user has a working copy and the full change history.

Advantages of DVCS (compared with centralized systems) include:

  • Allows users to work productively when not connected to a network.
  • Common operations (such as commits, viewing history, and reverting changes) are faster for DVCS, because there is no need to communicate with a central server. With DVCS, communication is only necessary when sharing changes among other peers.
  • Allows private work, so users can use their changes even for early drafts they do not want to publish.
  • Working copies effectively function as remote backups, which avoids relying on one physical machine as a single point of failure.
  • Allows various development models to be used, such as using development branches or a Commander/Lieutenant model.
  • Permits centralized control of the "release version" of the project
  • On FOSS software projects it is much easier to create a project fork from a project that is stalled because of leadership conflicts or design disagreements.

Disadvantages of DVCS (compared with centralized systems) include:

  • Initial cloning of a repository is slower as compared to centralized checkout, because all branches and revision history are copied to your local machine.
  • The lack of locking mechanisms that is part of most centralized VCS and still plays an important role when it comes to non-mergeable binary files such as graphic assets.
  • Additional storage required for every user to have a complete copy of the complete codebase history.

Some originally centralized systems now offer some distributed features. For example, Subversion is able to do many operations with no network. Team Foundation Server and Visual Studio Team Services now host centralized and distributed version control repositories via hosting Git.


Maps Distributed version control



Replicated systems

Most DVCS products use an "open system" design, which supports independent branches and relies on merge operations. In an open system, every working copy is effectively a fork. Also, each branch is implemented as a working copy, with merges conducted by ordinary patch exchange across branches.

Some DVCS products instead use a "replicated system", where a single codebase is replicated to all developers, which reduces the need for merges. For the developers, the functionality of a replicated DVCS is the same as a centralized version control system. Examples of Replicated DVCS products are ClearCase, Code Co-op and PastWatch.


Git: a distributed versioncontrol system
src: image.slidesharecdn.com


Work model

The distributed model is generally better suited for large projects with partly independent developers, such as the Linux kernel project, because developers can work independently and submit their changes for merge (or rejection). The distributed model flexibly allows adopting custom source code contribution workflows. The integrator workflow is the most widely used. In the centralized model, developers must serialize their work, to avoid problems with different versions.

Central and branch repositories

Every project has a central repository that is considered as the official repository, which is managed by the project maintainers. Developers clone this repository to create identical local copies of the code base. Source code changes in the central repository are periodically synchronized with the local repository.

The developer creates a new branch in his local repository and modifies source code on that branch. Once the development is done, the change needs to be integrated into the central repository.

Pull requests

Contributions to a source code repository that uses a distributed version control system are commonly made by means of a pull request. The contributor requests that the project maintainer "pull" the source code change, hence the name "pull request". The maintainer has to merge the pull request if the contribution should become part of the source base.

The developer creates a pull request to notify maintainers of a new change; a comment thread is associated with each pull request. This allows for focused discussion of code changes. Submitted pull requests are visible to anyone with repository access. A pull request can be accepted or rejected by maintainers.

Once the pull request is reviewed and approved, it is merged into the repository. Depending on the established workflow, the code may need to be tested before being included into official release. Therefore, some projects contain a special branch for merging untested pull requests. Other projects run an automated test suite on every pull request, and the reviewer checks that any new code has appropriate test coverage.


Best Practices for HPC Software Developers: #3
src: i.ytimg.com


History

BitKeeper was used in the development of the Linux kernel from 2002 to 2005. The development of Git, now the world's most popular version control system, was prompted by the decision of the company that made BitKeeper to rescind the free license that Linus Torvalds and some other Linux kernel developers had previously taken advantage of.

Prior to Git, the first open-source DVCS systems included Arch, Monotone, and Darcs. However, open source DVCSs were never very popular until the release of Git and Mercurial.


Version Control with git. Version Control Version control is a ...
src: images.slideplayer.com


See also


git vs svn - fundamental differences - YouTube
src: i.ytimg.com


References


Version Control with git. Version Control Version control is a ...
src: images.slideplayer.com


External links

  • Essay on various revision control systems, especially the section "Centralized vs. Decentralized SCM"
  • Introduction to distributed version control systems - IBM Developer Works article

Source of article : Wikipedia