Maybe I have the wrong approach to Git-Flow...
I use Bitbucket (git) with GitFlow workflow.
I would like to know if it's possible to completely remove source changes of a feature branch after a merging with develop branch even after other branch features were merged
Edit: I try to explain better. I don't want to delete a feature branch, I want to remove all the changes brought by the feature branch.
I think that I can revert if my feature-branch is the last operation. But if: - I've done the merge of my feature-branch on develop-branch - other features have merged on develop-branch
and only after this operation I need to remove my first feature without lost any other features, it's possible?
Thanks, Ruggero