In a team where 2 developers were working on different things, but both were using develop
as the integration branch (working with gitflow) it turned out to be one developer's job is incomplete (but this job was not programmed for the current release) and the other is complete (this one is programmed for the current release).
Now, I'm trying to cherry pick every commit of the developer whose changes were programmed for the current release, but they are A LOT. My first thought was to cherry pick the commit of the pull request he submitted, but the parent for the cherry pick parameter is confusing, and it also brings some conflicts.
I'm not sure whether fixing these conflicts caused by cherry-picking the merge commit itself are worth it, or should I just cherry-pick one by one?