无法从 git.gnome.org 克隆
Cannot clone from git.gnome.org
我正在研究 Ubuntu OS。
我尝试从 git.gnome.org 克隆几个存储库,例如 -
git clone git://git.gnome.org/newcomers-tutorial
Cloning into 'newcomers-tutorial'...
fatal: unable to connect to git.gnome.org:
git.gnome.org[0: 209.132.180.184]: errno=Connection timed out
甚至尝试使用 http:// -
git clone http://git.gnome.org/newcomers-tutorial
Cloning into 'newcomers-tutorial'...
fatal: http://git.gnome.org/newcomers-tutorial/info/refs not found: did you run git update-server-info on the server?
而如果我从 github 克隆任何其他 repo,它就会成功克隆。
比如-
git clone https://github.com/arduino/Arduino.git
Cloning into 'Arduino'...
remote: Counting objects: 53558, done.
remote: Compressing objects: 100% (617/617), done.
^Cceiving objects: 11% (5996/53558), 23.67 MiB | 1.41 MiB/s
我在代理后面工作并且已经通过 -
设置了它
git config --global http.proxy $http_proxy
有什么帮助吗?
git 协议使用特殊端口 (9418),如果您在代理后面工作,该端口可能会被阻止。
至于 http 克隆,web page of the newcomers-tutorial
repo 提到了 https url,而不是 http:
git clone https://git.gnome.org/browse/newcomers-tutorial
请务必先设置您的 https 代理:
git config --global https.proxy $http_proxy
我正在研究 Ubuntu OS。 我尝试从 git.gnome.org 克隆几个存储库,例如 -
git clone git://git.gnome.org/newcomers-tutorial
Cloning into 'newcomers-tutorial'...
fatal: unable to connect to git.gnome.org:
git.gnome.org[0: 209.132.180.184]: errno=Connection timed out
甚至尝试使用 http:// -
git clone http://git.gnome.org/newcomers-tutorial
Cloning into 'newcomers-tutorial'...
fatal: http://git.gnome.org/newcomers-tutorial/info/refs not found: did you run git update-server-info on the server?
而如果我从 github 克隆任何其他 repo,它就会成功克隆。 比如-
git clone https://github.com/arduino/Arduino.git
Cloning into 'Arduino'...
remote: Counting objects: 53558, done.
remote: Compressing objects: 100% (617/617), done.
^Cceiving objects: 11% (5996/53558), 23.67 MiB | 1.41 MiB/s
我在代理后面工作并且已经通过 -
设置了它git config --global http.proxy $http_proxy
有什么帮助吗?
git 协议使用特殊端口 (9418),如果您在代理后面工作,该端口可能会被阻止。
至于 http 克隆,web page of the newcomers-tutorial
repo 提到了 https url,而不是 http:
git clone https://git.gnome.org/browse/newcomers-tutorial
请务必先设置您的 https 代理:
git config --global https.proxy $http_proxy