Cherry 选择压扁的提交
Cherry Pick a Squashed Commit
我有两个主要分支,staging
和 master
。我有一些提交,我已将这些更改推送到分支 xyz
,其基础分支正在暂存,并为 staging
分支创建了拉取请求。所有这些提交都被压缩成一个提交。
是否可以挑选这个压缩的提交并将这个挑选应用于从 master
开始的新分支,以便我也可以向 master
分支创建相同的拉取请求。
Is it possible to cherry pick this squashed commit and apply this cherry pick to a new branch started from master
是:git cherry-pick <sha of squashed commit>
我有两个主要分支,staging
和 master
。我有一些提交,我已将这些更改推送到分支 xyz
,其基础分支正在暂存,并为 staging
分支创建了拉取请求。所有这些提交都被压缩成一个提交。
是否可以挑选这个压缩的提交并将这个挑选应用于从 master
开始的新分支,以便我也可以向 master
分支创建相同的拉取请求。
Is it possible to cherry pick this squashed commit and apply this cherry pick to a new branch started from master
是:git cherry-pick <sha of squashed commit>