且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

SAP Spartacus的double maintenance -使用Cherrypick进行维护工作

更新时间:2022-09-11 17:36:44

we do that for all things related to my company now


alfter merge to develop we must add the same changes to maintenance branch


git checkout release/3.0.x



SAP Spartacus的double maintenance -使用Cherrypick进行维护工作具体方法

git checkout release/3.0.x

git pull

git checkout -b feature/GH-10618-m

git cherry-pick 936cf548be9b07900af9bd39dfef59c7e83f36bf

git push

create pr to release/3.0.x


SAP Spartacus的double maintenance -使用Cherrypick进行维护工作