with gitlab flow with release branching strategy, this is what my understanding is,
- you have one main branch which is long lived protected branch
- developers branch out feature branches from main and merges back in to main
- on every pull request merge - CI/CD pipeline runs unit tests and deploys code on
development branches
- once tested, you create pull request
main --> UAT
for deploying code onUAT
environment and finally - you create pull request
UAT-->Prod
to deploy onprod
envionment
Problem/Issue
what if we have planned to features for the release. however during UAT we realize that one feature has lots of issues and we can't move it production, but other feature is ready to go.
how do I cherry pick features to deploy to production, considering feature_1 (not ready to deploy) is committed before feature_2 which is ready to deploy?