简介: cherry-pick 和它的名称翻译一样,精心挑选,挑选一个我们需要的 commit 进行操作。它可以将在其他分支上的 commit 修改,移植到当前的分支。 git cherry-pick命令的作用,就是将指定的提交(commit)应用于其他分支。 git cherry-pick <co
解释 rebase ,中文:变基 ; 作用:合并代码和整理提交记录 示例 现在有2条分支 ,master 和 featuer ; feature 分支 是从master 的 b 分出来的 master - a - b - m feature \ - c - d 现在需要将,feature c ,d