Junior — Middle
What branching strategy was used in your previous project or company?
sobes.tech AI
Answer from AI
In my previous project, I used Git Flow branching strategy. It involves the following main branches:
master— the stable release-ready version.develop— the main development branch where all features are integrated.- feature branches — for developing individual features, created from
developand merged back into it. - release branches — for preparing a release, created from
develop. - hotfix branches — for urgent bug fixes in
master.
This model helps structure the development process and simplifies version management.