-
Notifications
You must be signed in to change notification settings - Fork 137
Commit message rules
Karol Lasończyk edited this page Feb 14, 2018
·
5 revisions
To keep the history of the nrfx project clear and consistent for current and future developers, the following commit message rules are introduced.
Keeping commit messages clear and consistent makes history easier to browse and understand for everyone. It can also speed up the review process and make it clearer for reviewers.
- Each commit should contain one logical change. What is a logical change?
For example, adding a new feature or fixing a specific bug. Usually, if you cannot describe the change
in just a few words, it is too complex for a single commit.
To split such a complex change into several commits you can use the
git add -p
orgit add -i
commands. - A good commit message should answer three questions:
- Why is it necessary? It may fix a bug, it may add a feature, it may improve performance, reliabilty, stability, or just be a change for the sake of correctness.
- How does it address the issue? For short obvious patches, this part can be omitted, but it should be a high level description of what the approach was.
- What effects does the patch have? In addition to the obvious ones, this may include benchmarks, side effects, and similar.
- A commit message should contain a short subject message, one blank line and
a description of the change. More details can be found at:
https://chris.beams.io/posts/git-commit/#seven-rules .
-
Short subject message - short description, subject, topic of done work written in
imperative mood (spoken or written as if giving a command or instruction, see
https://chris.beams.io/posts/git-commit/#imperative).
Please start the subject line with a prefix that identifies the subsystem being changed, followed by a colon.
Examples of good commit messages:
- nrfx_spi: Refactor SPI driver for readability
- boards: Add support for pca10040 board
- nrf_spi: Remove deprecated functions from SPI hal
- nrfx_spim: Update SPIM driver documentation
- nrfx_spi: Add multiple transfer functionality to SPI driver
- One blank line - a blank line to separate the topic of a commit from its body.
- A description of the change - The body, main description of the commit. Explanation of what has been changed in the code and why. Lines should be wrapped to 72 characters. In case of a minor or obvious change, this point can be omitted.
-
Short subject message - short description, subject, topic of done work written in
imperative mood (spoken or written as if giving a command or instruction, see
https://chris.beams.io/posts/git-commit/#imperative).
Please start the subject line with a prefix that identifies the subsystem being changed, followed by a colon.
Examples of good commit messages:
Example of a good commit message, according to the above rules. This example is a nonsense commit, but shows how to properly construct a good and clear commit message:
nrfx_spi: Remove deprecated functions from SPI driver
Remove nrfx_spi_xfer, nrfx_spi_start_task_get,
nrfx_spi_end_event_get functions and related static functions.
nrfx_spi_transfer function must be used instead of
nrfx_spi_xfer. nrfx_spi_xfer was removed according to decision
to not support legacy API.
nrfx_spi_start_task_get and nrfx_spi_end_event_get
functionalities were moved to nrfx_common module to support more
generic API and are not supported in this version.
A side effect of these changes is speeding up interrupt handlers
when using two serial peripherals. Benchmark results are as follows:
- Two peripherals, 8 B, xfer function code - 250 us
- Two peripherals, 8 B, transter function code - 190 us