Development workflow
GitFlow is a branching model for Git, created by Vincent Driessen. It has attracted a lot of attention because it is very well suited to collaboration and scaling the development team.
Last updated
GitFlow is a branching model for Git, created by Vincent Driessen. It has attracted a lot of attention because it is very well suited to collaboration and scaling the development team.
Last updated
GitFlow makes parallel development very easy by isolating new development from finished work. New development (such as features and non-emergency bug fixes) is done in feature branches, and is only merged back into main body of code when the developer(s) is happy that the code is ready for release.
If you are asked to switch from one task to another, all you need to do is commit your changes and then create a new feature branch for your new task. When that task is done, just checkout your original feature branch and you can continue where you left off.
Feature branches make it easier for two or more developers to collaborate on the same feature, because each feature branch is a sandbox where the only changes are the changes necessary to get the new feature working. That makes it very easy to see and follow what each collaborator is doing.
As new development is completed, it gets merged back into the develop branch, which is a staging area for all completed features that have yet to be released. So when the next release is branched off of develop, it will automatically contain all of the new development that has been finished.
GitFlow supports hotfix branches - branches made from a tagged release. You can use these to make an emergency change, safe in the knowledge that the hotfix will only contain your emergency fix. There’s no risk that you’ll accidentally merge in new development at the same time.
A change request is a proposal from a stakeholder in the software development process to change something in a product or in a product process. Common change requests include defects and requests for product enhancements or new features.
JIRA is a popular development workflow management solution. For enterprises at scale, it is common for teams to be comprised of stakeholders that oversee specific product domains.
For example, an ecommerce application may have teams responsible for one or more of these domains: Home, Product details, Product search, User accounts, Purchase, and others.
Change requests then come through as tickets. Tickets names should reflect the team making the request and an incremented number.
Example ticket name: purchase-23
Example hotfix ticket name: HOTFIX-purchase-23
New development (new features, non-emergency bug fixes) are built in feature branches. Feature branches are branched off of the develop branch, and finished features and fixes are merged back into the develop branch when they’re ready for release.
Verify you are on develop branch and it is updated to latest
Create a branch off of develop branch
The new feature branch should be named the same as the ticket making the change request - i.e. purchase-23
When development is complete, create a pull request into the develop branch
A pull request review should be conducted to ensure all best practices are followed and the change request requirements are satisfied
Finished features are then merged back into the develop branch and are ready for next release
Verify you are on master branch and it is updated to latest
Create a branch off of master branch
The new feature branch should be prefixed by 'HOTFIX' and named the same as the ticket making the change request - i.e. HOTFIX-purchase-23
When development is complete, create a pull request into the develop branch and master branch
A pull request review should be conducted to ensure all best practices are followed and the hotfix request requirements are satisfied
Finished hotfixes are then merged into the develop branch and are verified as working properly
Finished hotfixes are then merged back into the master branch and are verified as working properly in production