We have dev, release, and master branches. On the Dev branch, we have 10 Pull requests and I want to merge only 5 pull requests from Dev to the release branch, so I used cherry-pick option and merged 5 pull requests into the release branch. and that looks good.
After a week I tried to merge all the remaining 5 PR from the development branch to the release branch. but it is showing a total 10 PR that needs to be merged into the release branch. but 5 out of 10 were merged into the release branch using a cherry pick.
Why it's showing 10 PR in the dev branch even after merging 5 PR into the release branch using cherry pick? I was expecting only the remaining 5 PR should show.
Thanks
After merging changes with Cherry Pick it should not show changes in the source branch. source branch should show only pending changes which need to be merged to another branch.