Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Git Flow: Excluding certain feature in release branch

Tags:

git

git-flow

Say there were 5 features merged into develop (eg A-B-C-D-E) but one of those features did not pass QA (eg C).

How do I start a release branch while excluding a feature at the same time?

like image 210
franco Avatar asked Nov 08 '22 08:11

franco


1 Answers

I'd branch your release branch off from the point just before where the problematic feature branch (C) was, and then merge D and E into that release branch afterwards (assuming they weren't deleted already).

That way you will end up with A, B, D and E on release.

like image 141
Obsidian Age Avatar answered Nov 15 '22 04:11

Obsidian Age