Repository rules

Since the main resource we work with is code, it is paramount for the projects’ health (and our own) that we keep a set of rules to work in all repositories in an orderly fashion.

Gitflow

We follow gitflow as a branching and tagging model, where master acts as a development branch and a stable branch is kept.

Versioning

Versions should be noted as MAJOR.MINOR.PATCH(-preX). We follow semantic versioning for MAJOR, MINOR and PATCH.

  • MAJOR version when you make incompatible API changes,
  • MINOR version when you add functionality in a backwards-compatible manner, and
  • PATCH version when you make backwards-compatible bug fixes.

The -pre1, -pre2, etc are consecutive deploys to staging until such version is given the go ahead by the QA team.

Commit messages

We aim for these guidelines:

  • Separate subject from body with a blank line
  • Limit the subject line to 50 characters
  • Capitalize the subject line
  • Do not end the subject line with a period
  • Use the imperative mood in the subject line
  • Wrap the body at 72 characters
  • Use the body to explain what and why vs. how

Example

  1. Summarize changes in around 50 characters or less
  2. More detailed explanatory text, if necessary. Wrap it to about 72
  3. characters or so. In some contexts, the first line is treated as the
  4. subject of the commit and the rest of the text as the body. The
  5. blank line separating the summary from the body is critical (unless
  6. you omit the body entirely); various tools like `log`, `shortlog`
  7. and `rebase` can get confused if you run the two together.
  8. Explain the problem that this commit is solving. Focus on why you
  9. are making this change as opposed to how (the code explains that).
  10. Are there side effects or other unintuitive consequenses of this
  11. change? Here's the place to explain them.
  12. Further paragraphs come after blank lines.
  13. - Bullet points are okay, too
  14. - Typically a hyphen or asterisk is used for the bullet, preceded
  15. by a single space, with blank lines in between, but conventions
  16. vary here
  17. If you use an issue tracker, put references to them at the bottom,
  18. like this:
  19. Resolves: #123
  20. See also: #456, #789

Guidelines

Several other things to consider when working in a repository.

  • No Half-baked Features in Master
  • Merge to Master Before Release
  • Bugfix On release-branch
  • Bugs Not In Production
  • Don’t Close Issue Before Merging
  • No release-branch With Open Issues
  • Postpone feature BEFORE merging
  • Comment on Done but not Merged Issue
  • Bring Forward a Feature
  • Freeze Milestone when Branching a Release
  • Don’t Add Features on Frozen Milestones
  • Bug Issues on Frozen Milestones