The follow git workflow is Scaled Trunk-Based Development.
main
is the only long-lived branch- All other branches are short-lived branches
Commit messages must follow the specification from Conventional Commits.
To help you to choose the right type
or scope
, you can commit:
- from the dedicated extension in
Source Control
tab ofvscode
- from the terminal via
commitizen
with the commandnpx cz
- Format as following:
[purpose]:[scope]
where it may have multiple sub-scopes separated by:
- Use
:
to separate scopes - Use
-
(kebab-case) for scope names or purposes - Use
_
(snake_case) for helper functions that should not directly be used by the CLI
function install:dev:dotnet-core:global {
...
}
In the above example, dev
and dotnet-core
are scopes and separated by :
.