Git merging bifurcation problem

We have master branch and dev branch

I submitted 5 times in the dev branch, but I only want to merge 3 of them into the master branch. What should I do?

Git
Mar.25,2021

learn about git cherry-pick:

see if this can solve your problem: https://www.zhihu.com/questio.


fallback to the third commit and then git merge dev on the master branch

Menu