在ubuntu上克隆需要很长时间

时间:2013-02-14 09:12:21

标签: git git-clone

我已经使用命令

在ubuntu中安装了Git
sudo apt-get install git-core 
sudo apt-get install git

在此之后,我尝试使用命令

安装node.js.
git clone git://github.com/ry/node.git

在此步骤中,它说

Cloning into node..

并且需要很长时间而且不会返回。

我在这里错过了什么吗?

1 个答案:

答案 0 :(得分:3)

该存储库(git://github.com/ry/node.git)实际上已重定向到joyent帐户。

使用git或https协议尝试目标网址,看看克隆是否更快。

git clone git://github.com/joyent/node.git
git clone https://github.com/joyent/node.git

另外,2天前,GitHub遇到了一些可能影响克隆的问题:

  

10:11我们目前遇到一个文件服务器问题。这会影响存储库的子集   10:05 UTC我们正在调查我们的一个文件服务器的问题。


我刚用两种协议测试它:

vonc@voncp1 ~/ $ time git clone git://github.com/joyent/node.git
[ VonC,vonc@laposte.net for github.com ]
Cloning into 'node'...
remote: Counting objects: 92208, done.
remote: Compressing objects: 100% (23478/23478), done.
remote: Total 92208 (delta 72604), reused 85936 (delta 67189)
Receiving objects: 100% (92208/92208), 57.96 MiB | 4.49 MiB/s, done.
Resolving deltas: 100% (72604/72604), done.

real    0m34.156s
user    0m9.777s
sys 0m2.104s

vonc@voncp1 ~/ $ time git clone https://github.com/joyent/node
[ VonC,vonc@laposte.net for github.com ]
Cloning into 'node'...
remote: Counting objects: 92208, done.
remote: Compressing objects: 100% (23478/23478), done.
remote: Total 92208 (delta 72604), reused 85936 (delta 67189)
Receiving objects: 100% (92208/92208), 57.96 MiB | 3.48 MiB/s, done.
Resolving deltas: 100% (72604/72604), done.

real    0m43.459s
user    0m10.153s
sys 0m1.752s