My current git flow develop
branch contains many features, I would like to make a release with just some of them, and remove some others, which will be released later.
Usually I would do:
git flow release start 1.1.0
but this would branch from develop
with all the features already merged.
How can I do that?
thanks