On my project, when devs ask for merge of feature branches on develop, the source branch is merged, and afterwards deleted, because in the Merge Requests settings, we checked Enable “Delete source branch” option by default.
When we want to merge the develop branch in master, the develop branch isn’t deleted, because it is protected. But we’d like rebase it from master immediately after the merge. How to do that ?
2