Difference between revisions of "RepositoryStructure"
(removed discussion stuff, describes final new branching model now) |
|||
Line 6: | Line 6: | ||
'''Releases get even version numbers.''' | '''Releases get even version numbers.''' | ||
The only commits that go into those branches are only bugfixes. No new feature commits are being done directly to those. | The only commits that go into those branches are only bugfixes. No new feature commits are being done directly to those. | ||
'''May branch off from:''' ''release preparation branch''<br/> | '''May branch off from:''' ''release preparation branch''<br/> | ||
'''Branch naming convention:''' ''v<major>.<even_minor>'' | '''Branch naming convention:''' ''v<major>.<even_minor>'', e.g. v4.0 | ||
=== Release Preparation Branches === | === Release Preparation Branches === | ||
Line 23: | Line 19: | ||
'''May branch off from:''' ''development branch''<br/> | '''May branch off from:''' ''development branch''<br/> | ||
'''Must merge back into:''' ''development branch''<br/> | '''Must merge back into:''' ''development branch''<br/> | ||
'''Branch naming convention:''' ''v<major>.<odd_minor>'' | '''Branch naming convention:''' ''v<major>.<odd_minor>'', e.g. v3.9 | ||
== Development branch == | == Development branch (master) == | ||
A permanent branch where current the development is based on. For users wanting to test the the bleeding edge, this is the one to use. | A permanent branch where current the development is based on. For users wanting to test the the bleeding edge, this is the one to use. | ||
It should at least compile, but can have untested new features. New features are being injected into this one from the feature branches. | It should at least compile, but can have untested new features. New features are being injected into this one from the feature branches. | ||
<span style="color:red">'''The branch "master" is now our development branch. There is no branch named "dev" anymore.'''</span> | |||
== Feature branches == | == Feature branches == | ||
Line 68: | Line 48: | ||
== Old VS new repository structure == | == Old VS new repository structure == | ||
<span style="color:red">'''The branch "master" is now our development branch. There is no branch named "dev" anymore.'''</span> | |||
* The "dev" branch was renamed to the release preparation branch "v3.9". | |||
* "master" was reset to the previous "locm3" branch, where development will happen now with libopencm3 for the STM32 architecture. | |||
* | |||
Revision as of 15:48, 8 May 2012
Repository Structure Refers to the way Paparazzi is naming the branches and which one is the right one for you.
Stable Releases
These are the branches that are considered stable and ok to be used by everyone. The default branch on github (the one you get when cloning the repository) will always be set to the latest stable release.
Releases get even version numbers.
The only commits that go into those branches are only bugfixes. No new feature commits are being done directly to those.
May branch off from: release preparation branch
Branch naming convention: v<major>.<even_minor>, e.g. v4.0
Release Preparation Branches
Release preparation is done in branches with odd version numbers. When it is ready the branch is renamed to the next even number. So e.g. stabilization and testing is done in v4.1 and then renamed to v4.2 (and tagged) on release.
May branch off from: development branch
Must merge back into: development branch
Branch naming convention: v<major>.<odd_minor>, e.g. v3.9
Development branch (master)
A permanent branch where current the development is based on. For users wanting to test the the bleeding edge, this is the one to use. It should at least compile, but can have untested new features. New features are being injected into this one from the feature branches.
The branch "master" is now our development branch. There is no branch named "dev" anymore.
Feature branches
If a bigger new feature is being implemented and is meant for people to test the development branch is being copied into "feature_<description>" and after the implementation of the new feature is completed those branches get merged back into the development branch again.
May branch off from: development branch
Must merge back into: development branch
Branch naming convention: <feature_description>
Hotfix branches
If there are bugfixes that need to be tested before they get applied/merged to a stable release they get their own (temporary) branch:
May branch off from: stable branch
Must merge back into: stable branch
Branch naming convention: <major>.<even_minor>_fix_<description>
For example:
- v4.0_fix_b2_v12_mag_signs
Old VS new repository structure
The branch "master" is now our development branch. There is no branch named "dev" anymore.
- The "dev" branch was renamed to the release preparation branch "v3.9".
- "master" was reset to the previous "locm3" branch, where development will happen now with libopencm3 for the STM32 architecture.