差分电流源与时间点源
我知道如何查看所有内容变更集中的变更。
但是假设您更新了源代码,进行了拉取
操作,并获得了 3 个新的变更集。如何比较远程存储库的当前状态(签入了 3 个变更集)与当前源(在本地计算机上)?
我想使用我当前配置的视觉差异工具(Examdiff 或 Kdiff3)来执行此操作。
I know how to view all changes in a changeset..
But let's say you update your source, you do a pull
and you get 3 new changesets. How can you compare the current state of the remote repository (with the 3 changesets checked in) vs. the current source (on your local machine)?
I'd like to do this using the visual diff tool which I currently have configured (Examdiff or Kdiff3).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想要将当前工作目录与
tip
版本进行比较,因此您应该能够使用hg diff -r Tip
。You want to compare the current working directory with the
tip
revision, so you should be able to usehg diff -r tip
.