Feature:
-
Starting a new feature.
Create a newfeature/future_name
branch fromdevelop
. -
Finalizing the feature.
Mergefeature/future_name
intodevelop
, deletefeature/future_name
. -
Starting a release.
Create a release branch release/vX.X.X, branching off the develop branch. -
Release completion.
Release branchrelease/vX.X.X
is merged intomaster
, release is tagged, release branch is merged intodevelop
, release branch is deleted.
Fix:
-
Start fixing.
From themaster
branch createhotfix/fix_name
. -
Finalization of the hotfix.
Thehotfix/fix_name
branch is merged intodevelop
andmaster
, the fix branch is deleted.
Symbol | Risk Description |
---|---|
. | Provable (changes are easy to verify) |
- | Tested (changes have been tested) |
! | Single Action (single, atomic change) |
@ | Other (miscellaneous changes) |
Symbol | Action Description |
---|---|
r | Refactoring (improving code structure) |
e | Environment (non-code changes) |
d | Documentation (changes to documentation) |
t | Test only (changes to tests) |
F | Feature (new features) |
B | Bugfix (fixing bugs) |
.r rename variable
: Provable refactoring change, such as renaming a variable.-e update build script
: Tested change to the environment, such as updating a build script.!B fixed spelling on label
: Single action bugfix, like fixing a spelling error on a label.@d update README
: Miscellaneous documentation change, like updating the README file.
- Always use the appropriate risk and action symbols to describe the change.
- Provide a concise description of the change after the symbols.
.r rename variable
: This commit renames a variable, which is a provable refactoring change.-e update build script
: This commit updates a build script, indicating a tested environment change.!B fixed spelling on label
: This commit fixes a spelling error on a label, a single action bugfix.@d update README
: This commit updates the README file, categorized as other documentation change.
By using this notation, you can clearly and concisely describe the nature and risk of your changes in commit messages.
Summary of the Arlo's Commit Notation: