Case Study for Git Work Flow. we will follow branching structure as below.
- Main
- Develop
- Feature
- Release
- Hot_Fix
- created repository and added initial code on main
- created new develop branch from main
- created new feature1 branch and added code
- created new feature2 branch from develop
- Merged feature 1 and feature2 to develop
- Merged develop into main using pull request and created milestone.
- created hotfix branch from main for a production issue.