The download speed of github is slow and speed up

When downloading the code from github today, I found that the download speed is slow. My git command is:

➜  pythonFiles git clone https://github.com/PaddlePaddle/PaddleRec.git
Cloning into 'PaddleRec'...
remote: Enumerating objects: 124, done.
remote: Counting objects: 100% (124/124), done.
remote: Compressing objects: 100% (100/100), done.
fatal: the remote end hung up unexpectedly MiB | 8.00 KiB/s
fatal: early EOF
fatal: index-pack failed

Solution

You can use a chrome plug-in, I tried it and it was very fast.

https://chrome.google.com/webstore/detail/github%E5%8A%A0%E9%80%9F/mfnkflidjnladnkldfonnaicljppahpg/related?hl=zh-CN

 

➜  pythonFiles git clone https://github.com.cnpmjs.org/PaddlePaddle/PaddleRec.git
Cloning into 'PaddleRec'...
remote: Enumerating objects: 124, done.
remote: Counting objects: 100% (124/124), done.
remote: Compressing objects: 100% (100/100), done.
Receiving objects: 100% (17352/17352), 76.17 MiB | 2.78 MiB/s, done.
remote: Total 17352 (delta 56), reused 46 (delta 22), pack-reused 17228
Resolving deltas: 100% (9898/9898), done.

Faster

references

[1]. Solve the problem of slow github download speed (2020.08.07).  https://zhuanlan.zhihu.com/p/172504883

Guess you like

Origin blog.csdn.net/w5688414/article/details/113395583