git cherry-pick <另一个分支需要合并的id>
git checkout v2.0分支
git cherry-pick 38361a55 # 这个 38361a55 号码,位于需要合并过来的分支中:
git push
git cherry-pick <另一个分支需要合并的id>
git checkout v2.0分支
git cherry-pick 38361a55 # 这个 38361a55 号码,位于需要合并过来的分支中:
git push