假设我有两个名为repositoryA
and的存储库repositoryB
。我需要合并一个提交,该提交abcdefgh
位于一个分支中repositoryA
并调用branchA
到另一个名为branchB
并位于repositoryB
.
在存储库B中:
git checkout -b branchB
git remote add repositoryA git@github.com:xxx/repositoryA.git
git remote update
git cherry-pick abcdefgh
这不起作用,当我合并时,它将整个 branchA 合并到 branchB 并产生很多冲突,并且樱桃挑选和上面的失败。