Difference between revisions of "RepositoryStructure"

From PaparazziUAV
Jump to navigation Jump to search
Line 86: Line 86:
* rename: campaign2011 -> v3.6
* rename: campaign2011 -> v3.6
* rename: spi_driver -> feature_spi_driver (or v4.1_spi_driver)
* rename: spi_driver -> feature_spi_driver (or v4.1_spi_driver)
Comment from Gautier (8 May 2012): actually, I like the names "campaignXXXX" or something similar to name the stable releases. It recalls that Paparazzi is supposed to be used for "real" applications, it's not only a piece of software. But we can keep both numbers and names.


For the new development branch there are different options (as described above):
For the new development branch there are different options (as described above):

Revision as of 14:32, 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.

  • v3.2 (e.g. use the current campaign2010 for that)
  • v3.6 (e.g. use the current campaign2011 for that)
  • v4.0

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>

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>

Development branch

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.

Here we have come up with different models.

Master branch for development model

Use branch "master" for development.

dev branch for development model

Like now the branch "dev" is used for development. In this case "master" would always point to the latest stable release.

no permanent development branch

Another option could be to not have a permanent development branch at all, but instead immediately start with a new odd version branch after a release where feature branches would be merged into.

In this case we could keep master pointing to the latest stable release or not have any permanent branches at all (but this has quite a few drawbacks).

Votes

  • no permanent development branch (less branches and obvious where development is being done atm) Esden 21:10, 7 May 2012 (UTC)
  • any of the above, as long as we keep one branch named "master" (which would be either the latest stable or the development branch) flixr 21:18, 7 May 2012 (UTC)
  • keep "master" as latest stable. If possible, keep "dev" for development (I think it is better to have a single reference branch to start working on a new "feature" and merge it back) Gautier 8 May 2012

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>

Another option could be to name them according to the next preparation branch <major>.<odd_minor>_<feature_name>.

For example these branches could have names like:

  • feature_state_interface
  • feature_luftboot_support

or

  • v4.1_spi_queues

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

This section describes how the old structure will be changed to the new structure.

Basically the current "dev" would become the release preparation branch (we can then delete 4.0_beta), the "locm3" branch would become the new development branch.

  • rename: dev -> v3.9
  • rename: campaign2010 -> v3.4
  • rename: campaign2011 -> v3.6
  • rename: spi_driver -> feature_spi_driver (or v4.1_spi_driver)

Comment from Gautier (8 May 2012): actually, I like the names "campaignXXXX" or something similar to name the stable releases. It recalls that Paparazzi is supposed to be used for "real" applications, it's not only a piece of software. But we can keep both numbers and names.

For the new development branch there are different options (as described above):

  1. master for development:
    • reset master to current locm3
  2. dev for development:
    • reset dev -> locm3
    • master: reset to new v3.9 (even if it is not a release, and keep it on the release branches from there on)?