Mercurial 是否有相当于 svnlook 树的东西?

发布于 2024-10-25 23:40:40 字数 373 浏览 3 评论 0原文

我一直在使用 Mercurial 来完成一个需要 Subversion 的学校项目。到目前为止,我只是在最后转换我的存储库以运行老师想要输出的一些命令。我已经设法获得了与其中大多数足够接近的等效项,但我无法弄清楚 svnlook 树 [路径] 。我想,最坏的情况我可以编写一个 Python 脚本来做到这一点,但如果有类似的内置东西会更容易。有吗?

作为参考,svnlook tree /some/path 打印如下内容:

/
  files/
    one_file.txt.
    two_file.txt
  pictures/
    red_picture.png
    blue_picture.png
  README

I've been using Mercurial for a school project that requires Subversion. Until now, I've just been converting my repository at the end to run some commands the teacher wants the output from. I've managed to get close-enough equivalents to most of them, but I can't figure out svnlook tree [path]. I figure, worst case I can write a Python script to do this, but it would be easier if there was something similar built in. Is there?

For reference, svnlook tree /some/path prints something like this:

/
  files/
    one_file.txt.
    two_file.txt
  pictures/
    red_picture.png
    blue_picture.png
  README

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

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

发布评论

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

评论(1

挽你眉间 2024-11-01 23:40:40

您无法从 Mercurial 中获得确切的外观。您可以重新格式化 hg manifest 的输出,或者只在工作目录中运行普通的 unix tree 命令(您可能需要安装该命令,但肯定可以在任何发行版上使用) )。或者,您可以使用 Mercurial wiki 上使用 Subversion 中的技术来回传送更改。

You'll not get that exact look out of Mercurial. You could reformat the output of hg manifest, or just run the normal unix tree command in your working directory (which you may need to install, but is certainly available on any distro). Alternately you can use the techniques from Working With Subversion on the Mercurial wiki to shuttle changes back and forth.

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