This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

[参考译文] AM3517:使用 git://时 Git 克隆失败

Guru**** 2333880 points
请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。

https://e2e.ti.com/support/processors-group/processors/f/processors-forum/1516324/am3517-git-clone-failing-when-using-git

部件号:AM3517

工具/软件:

无法通过 git://进行克隆。 通过 https 进行的克隆工作正常。 在 TI 有什么阻止了它的吗?

13:03 $ git clone git://git.ti.com/ti-u-boot/ti-u-boot.git
Cloning into 'ti-u-boot'...
fatal: unable to connect to git.ti.com:
git.ti.com[0: 198.47.28.208]: errno=Connection refused

以下内容有效:

13:14 $ git clone git.ti.com/.../ti-u-boot.git
Cloning into 'ti-u-boot'...
remote: Enumerating objects: 1115504, done.
remote: Counting objects: 100% (1537/1537), done.
remote: Compressing objects: 100% (744/744), done.


但我们无法对其进行更改、因为它附带在 meta-ti 封装中的 Yocto 构建。

  • 请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
    Unknown 说:
    无法通过 git://进行克隆。 通过 https 进行的克隆工作正常。 TI 有什么阻止了它?

    许多互联网服务器(包括 TI Git 服务器)在一年或两年前就停止支持"Git Transport"协议、因此您在构建一些较旧的 Yocto 方法时会出现错误、而 TI 并不特有这种错误。 解决方案是开始使用"Git 的"HTTPS 传输",就像你已经弄清楚如何手动操作一样。 对于 Yocto、您需要使用新的 URL/传输来更新各自的 Bitbake 配方、因此无法做到这一点。 如果您需要灵感使用什么确切的 URL/语法,请查看`meta-ti`中的新配方。 您还可以在此处尝试搜索许多有关此主题的 E2E 主题。

    此致、Andreas