I have a workflow where we have two branches master
and develop
. I checked out to develop
, created new branch feature1
and merged its changes to develop. Now after passing testing I want to merge my changes of ONLY feature1
into master
but when I set the base branch as master
while merging feature1
, it is trying to merge all commits of develop
branch into master
branch.
How can I accomplish my goal?