Mercurial:获取文件特定修订版的内容

发布于 2024-12-04 06:07:03 字数 97 浏览 0 评论 0原文

我需要获取本地存储库中文件的特定修订/节点的内容并将其写入临时文件。

我知道可以通过内部 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

来日方长 2024-12-11 06:07:03

您可以使用 hg cat

hg cat -r revisionid filename > tmpfile

You can use hg cat:

hg cat -r revisionid filename > tmpfile
帅冕 2024-12-11 06:07:03

最快的、大的和/或二进制文件友好的方法是:

hg cat -r revisionid repoRelativeFilePath -o tempFilePath

tempFilePath,除非绝对根(例如“C:\”)将相对于存储库的根

The fastest, large and/or binary file friendly way to do this is:

hg cat -r revisionid repoRelativeFilePath -o tempFilePath

The tempFilePath, unless absolutely rooted (ex. 'C:\') will be relative to the repo's root

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文