Answer Posted / Mukesh Kumar Sinha
Gitflow is a branching model for Git. It includes four main branches: 'master', 'develop', feature branches (named according to their purpose), and maintenance branches (hotfixes and releases). The workflow goes as follows: new features are developed in feature branches, merged into develop, tested, then merged into master; bug fixes are done on hotfix branches which are also merged into develop and master; and releases are created from the 'master' branch.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers