Skip to content

Instantly share code, notes, and snippets.

View ShaunMerritt's full-sized avatar

Shaun Merritt ShaunMerritt

View GitHub Profile
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)