我的承诺被一个不知道如何处理冲突的人破坏了。有没有一种简单的方法来尝试自动合并提交回来?我试过用“合并到掌握”,但它只是说最新的。我用的是龟甲。
That's what git cherry-pick is for. It lets you apply changes by using already existing commits.
git cherry-pick
The basic syntax is:
git cherry-pick <commit> ...