Mercurial:使用非跟踪分支进行修补
我有一个使用 Hg 跟踪的开源项目。有同事在没有使用任何版本控制的情况下做了一些修改,我的版本也被修改了。现在我想将他所做的修改(没有任何版本控制)合并到我的主干中,在这种情况下最好的操作周期是多少? 谢谢大家,
I've got an Open Source project tracked with Hg. A collegue did some modification without using any version control, and my version also was modified. Now I want to merge the modification he did ( without any version control ) into my trunk, what's the best operation cycle in this case ?
Thank all,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请他使用
diff
工具制作一个通用补丁,并使用您这边的patch
应用它。为了让这个过程更顺利,您可能会
更新
回您同事的修订版本,然后合并 2 个头。Ask him to make a general patch using
diff
tool and apply it withpatch
on your side.To have this process passed smoother you'd probably
update
back to the revision your colleague has and then merge 2 heads.