Mercurial 存档特定文件夹/文件?

发布于 2024-09-16 08:39:09 字数 271 浏览 2 评论 0原文

在 SVN 中,我可以执行此操作以仅导出folder2 中的内容

svn export svn://source/Trunk/folder1/folder2 -r HEAD

我如何在 Mercurial 中执行相同操作?看来 hg archive 只接受目标路径而不接受源路径。如果我执行 hg archive target_path/folder ,它将导出存储库中的所有内容。

提前致谢。

In SVN, I can do this to only export contents in folder2

svn export svn://source/Trunk/folder1/folder2 -r HEAD

How can I do the same in Mercurial? It seems that hg archive only accepts the target path not the source path. If I do hg archive target_path/folder it will export everything in the repository.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

时光倒影 2024-09-23 08:39:09

使用 --include--exclude 指令

hg archive -I 'target_path/folder/*' my_stuff.tar

将获取 folder 中的所有内容。

Use the --include and --exclude directives

hg archive -I 'target_path/folder/*' my_stuff.tar

will get everything from folder on down.

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