从 perl 脚本确定 hg 默认 url

发布于 2024-12-03 07:15:54 字数 73 浏览 1 评论 0原文

如何从 Perl 脚本确定 hg 存储库的默认 url?

(如果您写“hg in”,则显示在第 1 行的 url)

How would one determine a hg repository's default url from a perl script?

(the url that shows up on line 1 if you write "hg in")

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

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

发布评论

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

评论(2

硬不硬你别怂 2024-12-10 07:15:54

只需运行 hg paths default 即可打印路径。

Simply run hg paths default and it will print the path.

知你几分 2024-12-10 07:15:54

运行 hg paths default 的替代方法(例如,如果您实际上没有安装 Mercurial),就是查看存储库本身中找到的 hgrc 文件:

c:\> cd MyRepo
c:\> type .hg\hgrc
[paths]
default = o:\HG\MyRepo

是的,这就是 Windows 命令提示符,但您明白了 - 您可以 cat .hg/hgrc 并查看 [ 中的 default 选项paths] 部分。

An alternative to running hg paths default (if, for example, you don't actually have mercurial installed) would be to look at the hgrc file found in the repository itself:

c:\> cd MyRepo
c:\> type .hg\hgrc
[paths]
default = o:\HG\MyRepo

Yes, that's Windows command-prompt stuff right there, but you get the idea - you can cat .hg/hgrc and look at the default option in the [paths] section.

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