有没有办法获得“hg extdiff”包括子存储库?
我想将 Mercurial 配置为能够执行“hg diff -S”之类的操作,但使用外部 diff 工具(特别是 kdiff3)。执行此操作的逻辑方法类似于
hg extdiff -S -p kdiff3
但是,这不起作用,因为 extdiff 扩展不支持许多其他 Mercurial 命令用于包含子存储库的“-S”选项。有解决方法吗?
I would like to configure Mercurial to be able to do something like "hg diff -S", but with an external diff tool (kdiff3, specifically). The logical way to do this would be something like
hg extdiff -S -p kdiff3
However, this does not work because the extdiff extension does not support the "-S" option that many other mercurial commands use to include subrepositories. Is there a workaround?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,恐怕不是——当我的客户赞助其他命令的工作时,向 extdiff 扩展添加一个
--subrepos
标志并不是一厢情愿的。No, I'm afraid not -- adding a
--subrepos
flag to the extdiff extension was not on the wishlish when my client sponsored the work on the other commands.