-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
28 additions
and
18 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# 006 - Git | ||
|
||
## Branch workflow | ||
|
||
For each feature is used a dedicated branch. The development of each version is carried out in the specific branches. | ||
|
||
Before the first release, main branch is `master` only. | ||
|
||
After the first release, `master` branch must rename to `1.x`. For major change must be created a new branch with usage | ||
next version as name (for example, `2.x`). The main branch is the branch with the current stable release. | ||
|
||
## Commit messages | ||
|
||
### Subject line | ||
|
||
- Use `#123` to reference issue by number | ||
- Use imperative mood that's `Fix`, not `Fixed` | ||
- Don't add period at the end | ||
- Use `[skip ci]` if there is no need to run unit tests | ||
- Start with a capital letter | ||
- Limit to 50 characters | ||
|
||
### Body | ||
|
||
Use message body **if** you need an extra explanation. Explain why, not how. | ||
|
||
- Limit line length to 72 characters |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters