This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
What is gitflow: | |
“Vincent Driessen’s "git flow" branching model is a git branching and release management workflow that helps developers keep track of features, hotfixes and releases in bigger software projects.” | |
Basically, gitflow is a structured way of branching that doesn’t get in the way of developers making features. | |
It works by having specific branches and branching structure with different intentions. The structure is: | |
Master (Always reflects what is in the App Store) | |
Hotfixes (Urgent fixes to things that are in Master) | |
Releases (Ready for release, only bug fixes go into these) |