Mercurial cgi 接口中有函数的文档吗?
我正在尝试获取有关 Mercurial cgi 网页所提供的不同页面的一些信息。但是我找不到任何有用的东西。一次偶然的机会,我偶然发现了 raw-rev 页面。有人有一些有效的文档链接吗?
I am trying to get some information about the different pages served by the Mercurial cgi webpage. However I cannot find anything usefull. By accident I stumbled upon the raw-rev page. Anyone got some valid links to documentation?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是最近的 Mercurial 安装中的带注释的爬网:
列出方法(日志、标签、分支、图表、短日志)采用 &revcount=N,这限制了输出长度。
使用以下方式找到有效的 REVID:
hg help revisions
FILEPATH 必须从
hg root
扩展到单个文件,raw-file
除外,其中目录为公认。Here's an annotated crawl from a recent mercurial installation:
Listing methods (log, tags, branches, graph, shortlog) take &revcount=N, which limits the output length.
Valid REVIDs are found using:
hg help revisions
FILEPATH must extend from the
hg root
to a single file, excepting forraw-file
where directories are accepted.