Git Branching Models: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "Our current branching model is not optimal and makes keeping track of versions hard. This page discusses various branching models. == Models == === Current SVN-like Model ===...")
(No difference)

Revision as of 17:24, 9 August 2016

Our current branching model is not optimal and makes keeping track of versions hard. This page discusses various branching models.

Models

Current SVN-like Model

Pros
  • Easy management of incompatible code (==> rolling-release works well)
Cons
  • Prone to losing track of differences between master and version branches
  • Doesn't integrate well with popular Git models implemented on e.g. GitHub

TODO

TODO

Comments

TODO