使用命令行将数据从 Mercurial 存储库站点复制到本地目录
这是具有 Mercurial 存储库的网站 http://hg.sagemath.org。我必须首先收集所有名称标签,当您单击其中一个名称标签时,相应的链接就会打开,其中包含所有文件或目录,如果有任何更改,我需要将其复制到本地目录。 我的设置如下,命令提示符
- 登录 Mercurial 站点。
- 获取名称标签。
- 获取带有引用名称标签(即 href 属性)的链接。
- 如果远程站点发生更改,则更新本地目录。
请让我知道我怎样才能实现这一目标?
This is the site http://hg.sagemath.org which has Mercurial repository. I have to collect all name tags first and when you click one of the name tags respective link gets open which has all files or directory which I need to copy to local directory if there is any changed.
My setup will be as below the command prompt
- login to the Mercurial site.
- get the name tags.
- get link with refer to name tag (i.e, href attribute).
- update the local directory if there is changed in remote site.
Please let me know how could I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,“需要紧急帮助”可能会让你的反应变慢。别这么说。
其次,这些存储库实际上是通过 HTTP 提供服务的。您可以执行
hg clone http://hg.sagemath.org/examples
来获取示例存储库的本地副本。所以:First off "need urgent help" is likely to make your responses slower. Don't say that.
Second, those repositories are actually being served via HTTP. You can do
hg clone http://hg.sagemath.org/examples
to get a local copy of the examples repository. So: