Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

All source materials used to create and distribute products or customizations are kept under some form of version control with a history of changes.

Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later. You can compare changes over time, see who last modified something that might be causing a problem, who introduced an issue and when, and more.

Another aspect of version control, branching, allows for parts of software to be developed in parallel. Using branches, contributors can isolate changes without destabilizing the codebase, for example, fixes for bugs, new features, and so forth. These changes may be later merged (resynchronized) into another branch or the main line of development. The main line of development is often referred to as the trunk. 

Version control plays an essential role in a continuous delivery toolset. The toolset is designed to detect problematic changes as soon as possible. With version control, we can identify the exact nature of the change, so that we can take appropriate action. 

Version control enables several other capabilities, including a technical change log. 

There are several version control systems that you can host on premises or in the cloud. 

What you need to decide

  • Cloud or on premises?
    • Not long ago, hosting version control off-premises was unthinkable. Today, there are several trusted cloud options, including Bitbucket, Visual Studio Team Services, and AWS CodeCommit. 
  • Git or something else?
    • Today most teams choose Git as their version control system. There are other choices, but you can safely choose Git unless there is another consideration.

Your choice of issue tracker can help drive your choice of version control system, and you may want to consider both in tandem. 

  • No labels