Mercurial:获取文件特定修订版的内容
我需要获取本地存储库中文件的特定修订/节点的内容并将其写入临时文件。
我知道可以通过内部 Mercurial API 来完成。
有内置命令或扩展吗?
I need to get contents of a specific revision/node of a file in a local repository and write it to a temporary file.
I know it is possible to do through the internal Mercurial API.
Is there a built-in command or an extension?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
hg cat
:You can use
hg cat
:最快的、大的和/或二进制文件友好的方法是:
tempFilePath,除非绝对根(例如“C:\”)将相对于存储库的根
The fastest, large and/or binary file friendly way to do this is:
The tempFilePath, unless absolutely rooted (ex. 'C:\') will be relative to the repo's root