Merge a specific change with master, following the master-develop-features git structure
July 23, 2020
fb-1: feature-branch_1
fb-2: feature-branch_2
fb-3: feature-branch_3
Situation
I am currently working on fb-2
whose base is off develop
branch
The tip of develop
branch got diverged after merging changes by other developers working in fb-1
and fb-3
.
Challenge
I want to push the feature in fb-2
to master
branch via develop
branch by raising pull request in such a way that changes from fb-2
only gets merge with the master, without loosing other features from develop
branch.