作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要从 Mercurial 下载源代码。
$ hg clone xmppframework.googlecode.com/hg xmppframework
warning: xmppframework.googlecode.com certificate with fingerprint b1:af:83:76:f3:81:b0:57:70:d8:07:42:c8:c1:b3:67:38:c8:7a:bc not verified (check hostfingerprints or web.cacerts config setting)
requesting all changes
adding changesets
adding manifests
adding file changes
我在终端中尝试使用此链接下载源代码。但命令失败。
任何人都可以帮助我摆脱这个。
谢谢大家,马丹。
最佳答案
问题是,您没有将 google 的指纹添加到您的 hgrc 文件中。有两种方法可以解决这个问题:
使用 http
而不是 https
,缺点是您的流量不再加密。
hg clone http://xmppframework.googlecode.com/hg/ xmppframework
或者将指纹添加到您的 hgrc 文件中:
请注意,Google 代码有时会更改指纹。当下面的指纹不起作用时,您可以使用此命令(取自此 question )来检测当前指纹:
$ openssl s_client -connect xmppframework.googlecode.com:443 < /dev/null 2>/dev/null | openssl x509 -fingerprint -noout -in /dev/stdin
[hostfingerprints]
xmppframework.googlecode.com = b1:af:83:76:f3:81:b0:57:70:d8:07:42:c8:c1:b3:67:38:c8:7a:bc
编辑,因为原始答案很难看。
关于mercurial - 如何从 Mercurial 中查看源代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5066696/
我是一名优秀的程序员,十分优秀!