Mercurial 存档特定文件夹/文件?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
--include
和--exclude
指令将获取
folder
中的所有内容。Use the
--include
and--exclude
directiveswill get everything from
folder
on down.