如何使用Eclipse Mercurial Plugin制作补丁?
我是 Mercurial 和 Eclipse Mercurial 插件的新手。
问题是我在单个文件中进行了更改并提交。我对该文件有两个修订版,我需要在第一个修订版和第二个修订版之间创建一个补丁/差异文件。
关于如何使用 Mercurial/Eclipse Mercurial 插件实现此目标的任何线索?
国王的问候,
I am new to Mercurial and the Eclipse Mercurial Plugin.
The thing is that I've made a change in a single file, and commit. I have two revisions of this file and I need to make a patch/diff file between the first and the second revision.
Any clues on how I can achieve this with Mercurial/Eclipse Mercurial Plugin?
King Regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不认为你可以通过 Eclipse GUI。您当然可以为未提交的文件导出补丁(团队 -> 导出补丁)。
您必须在想要修补程序的修订版上使用命令行 (hg log -p)。
I don't think you can through the Eclipse GUI. You can certainly export a patch for an uncommitted file or files (Team -> Export Patch).
You will have to use the command line (hg log -p) on the revision you want the patch for.