I have two main separate branch Master
and release
. My two PR(pull request) merged to Master branch called. featureA
and featureB
and deleted. Also many other feature branch merged to Master by different people.
Now, I want to create new PR/branch based on release
branch called releaseAB
, which should have commit from featureA
and featureB
as a single commit.
I tried.
git checkout release
git checkout -b releaseAB
git reflog **(Which doesn't show hash of `featureA` and `featureB` as it's on Develop branch)**
git cherry-pick <not sure which should I cherry pick)
I am not good in git So, not sure what should I do?
Any help would be greatly appreciated.