-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating
Magento Extensions Development
By :
The "best" workflow does not exist and it's why you need to create, develop, and improve yours. Of course, some guidelines exist and they will provide you with a framework of good practices. These standardized models are very similar, so you just need to take advantage of each model and build your own Git workflow.
Usually, we call the main branch master, which represents the trunk of your developments.
This section is an introduction to the specific workflow called "feature branch". It's based on the following branches:
Master
Develop
Feature
Release
Hotfix
This is the first branch your repository will contain and it is the default one. Usually, the branch designates the main trunk of the developments on which the others are based.
Another way of using the Master branch is to reflect the production: a version which is committed on the master exists in the production environment.
We create a Develop branch, reflecting...