如何用二进制文件挑选提交



我正在尝试从主要是二进制文件的不同分支中挑选提交。看来它最成功,除了我收到消息的一个文件:

warning: Cannot merge binary files: XXXX.so (HEAD vs. d8ef550... Add support for 32-bit apk)
error: could not apply d8ef550... Add support for 32-bit apk
hint: after resolving the conflicts, mark the corrected paths
hint: with 'git add <paths>' or 'git rm <paths>'
hint: and commit the result with 'git commit'

我可以在该文件上进行" git add",但是结果不是我所期望的。我希望这是一种修改,但事实证明可以删除相关文件。我试图樱桃选择的提交修改了一些二进制文件,并删除了一些文件。

那么,问题是...樱桃挑选提交w二进制文件的最佳方法是什么?

您可以使用git cherry-pick --strategy=recursive -X theirs {Imported_Commit}

进行此操作

(您可能需要先流产当前的樱桃袋; git cherry-pick --abort(

相关内容

  • 没有找到相关文章

最新更新