重新应用因冲突而撤消的提交?
我的这个提交被不知道如何处理冲突的人撤销了。有没有一种简单的方法来尝试自动合并提交回来?我尝试使用“合并到master”,但它只是说是最新的。我正在使用乌龟吉特。
I have this commit that was undone by someone who doesn't know how to deal with conflicts. Is there an easy way to try auto merging the commit back in? I tried using "merge to master" but it just says up to date. I am using tortoisegit.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这就是
gitcherry-pick
的用途。它允许您通过使用现有的提交来应用更改。基本语法是:
That's what
git cherry-pick
is for. It lets you apply changes by using already existing commits.The basic syntax is: