diff options
author | morpheus65535 <[email protected]> | 2021-02-23 16:14:13 -0500 |
---|---|---|
committer | GitHub <[email protected]> | 2021-02-23 16:14:13 -0500 |
commit | 2e11fa035b5729de928944341011892a2382dcf8 (patch) | |
tree | f95c1bf35103015a6f22fc8043714e8e03cc4426 /CONTRIBUTING.md | |
parent | 90266acd10783cc32df5dd9a9101b68e67a34df0 (diff) | |
download | bazarr-2e11fa035b5729de928944341011892a2382dcf8.tar.gz bazarr-2e11fa035b5729de928944341011892a2382dcf8.zip |
Update CONTRIBUTING.md
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f169d90df..38246f451 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,14 +9,14 @@ ## Branching ## ### Basic rules ### - `master` contains only stable releases (which have been merged to `master`) and is intended for end-users. -- `develop` is the target for integration and is not intended for end-users. -- `feature` is a temporary feature branch based on `develop`. +- `development` is the target for integration and is not intended for end-users. +- `feature` is a temporary feature branch based on `development`. ### Conditions ### -- `master` is not merged back to `develop`. -- `develop` is not re-based on `master`. -- all `feature` branches branch from `develop` only. -- Bugfixes created specifically for a feature branch are done there (because they are specific, they're not cherry-picked to develop). +- `master` is not merged back to `development`. +- `development` is not re-based on `master`. +- all `feature` branches branch from `development` only. +- Bugfixes created specifically for a feature branch are done there (because they are specific, they're not cherry-picked to `development`). - We will not release a patch (0.0.x) if a newer minor (0.x.0) has already been released. |