Git
The current model is based on the Git Flow model but with 2 differences:
Doesn't have the release branch
Has dependent feature branches, when
feature-b
creates fromfeature-a
The main reason for it that usually a review takes long time, but feature branches should have short live. Otherwise new functions from one branch will be missing for another branch, and at the end merging long lived independent branches will create a lot of conflicts.
This project is a multisite, so the git repository is common for both. 'master' and 'dev' are main branches (with CI/CD). Every feature/hotfix branch should have a prefix, an-feature-x or prt-hotfix-y, for clarification.
Last updated
Was this helpful?