-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add contributing branch and tag naming conventions
- Loading branch information
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
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,9 @@ | ||
#### Branch naming convention | ||
|
||
Following are the branch naming convention for the repository. | ||
|
||
* `main` - The main branch where the source code of HEAD always reflects a production-ready state. | ||
* `develop` - The main branch where the source code of HEAD always reflects a state with the latest delivered development changes for the next release. | ||
* `feature/*` - Branch from `develop` and merge back into `develop`. Branch naming convention is `feature/<issue-number>-<issue-title>`. For example, `feature/1234-add-branch-naming-convention`. | ||
* `release/*` - Branch from `develop` and merge back into `develop` and `main`. Branch naming convention is `release/<version-number>`. For example, `release/1.0.0`. | ||
* `hotfix/*` - Branch from `main` and merge back into `develop` and `main`. Branch naming convention is `hotfix/<issue-number>-<issue-title>`. For example, `hotfix/1234-fix-branch-naming-convention`. |
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,5 @@ | ||
#### Tag naming convention | ||
|
||
Following are the tag naming convention for the repository. | ||
|
||
* `v*.*.*` - Tag naming convention is `v<version-number>`. For example, `v1.0.0`. |