diff --git a/006-git.md b/006-git.md index 6e572ac..5d2ccf0 100644 --- a/006-git.md +++ b/006-git.md @@ -2,12 +2,9 @@ ## 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. +- Create a dedicated branch for each feature. Develop each version in specific branches. +- Before the first release, main branch is `master`. +- After the first release, rename `master` to `1.x`. For a major release, create a new version branch such as `2.x`. The main branch is the branch with the current stable release. ## Commit messages