| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
As introduced by issue 96, the structure adopted for the MDAnalysis source code central repository is based on the model which is fully described here: http://nvie.com/posts/a-successful-git-branching-model/.
This model relies on two main branches:
In addition to these two branches with an infinite lifetime, three kinds of supporting branches may also used occasionally:
The master branch should always reflect a production-ready state. In other words, this branch is used to "store" releases so an end-user cloning this branch will have 1. a stable code and 2. the "raw and unpackaged" version of the last stable release.
The develop branch is the main development. This branch should not contain highly experimental code but should rather be considered as an "integration branch": when code is stable enough to be added to the next release, it may be added to this branch.
As opposed to the main or develop branches, the supporting branches are used (more or less) temporarily. Their goal is to aid parallel development between team members by:
The feature branches are used to develop new features for the upcoming or a distant future release. A typical feature branch would exist as long as the feature is in development and should be deleted when the code is merged into the develop branch (or if the feature is discarded).
The release branches are used to prepare a new production release. They allow last-minute fixes and verifications to make sure everything is OK before a "public" release.
The hotfix branches are used typically used when a critical bug is found in a production release. Everything related to the resolution of the bug should be handled in a hotfix branch and then propagated to develop and master.
| Back | FazBrowse Home | New Git URL |