从 perl 脚本确定 hg 默认 url
如何从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需运行
hg paths default
即可打印路径。Simply run
hg paths default
and it will print the path.运行
hg paths default
的替代方法(例如,如果您实际上没有安装 Mercurial),就是查看存储库本身中找到的hgrc
文件:是的,这就是 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 thehgrc
file found in the repository itself:Yes, that's Windows command-prompt stuff right there, but you get the idea - you can
cat .hg/hgrc
and look at thedefault
option in the[paths]
section.