I'm a little new to gitflow and I haven't been able to find an answer for this.
Suppose we have a release branch called release/0.1
. While it's being currently tested and reviewed, etc, you're developing other newer features and merging it into the develop
branch.
Now, suppose you remembered, that you need to develop and add a missed feature into release/0.1
. How would you do this, without checking out into a new branch from develop
? Or would you have to checkout into a new branch from release/0.1
, but then how would you merge this new missed feature into develop later?