-
Bug
-
Resolution: Not a bug
-
Low
-
None
When doing a clone of the GIT repository (git clone git://git.moodle.org/moodle.git), it's normally quite speedy (>20MB/s).
For the past week or so, it's been just over 1MB/s. So for some reason, the speed has dropped dramatically.
Comparing against the GitHub mirror, which comes in at 14MB/s.
I know it's odd to complain about a download speed of 1MB/s. But when working against time schedules, it adds up!
[dan@s30 test]$ git clone git://git.moodle.org/moodle.git test1
|
Cloning into 'test1'...
|
remote: Counting objects: 765593, done.
|
remote: Compressing objects: 100% (184151/184151), done.
|
remote: Total 765593 (delta 567796), reused 760506 (delta 562743)
|
Receiving objects: 100% (765593/765593), 269.04 MiB | 1.82 MiB/s, done.
|
Resolving deltas: 100% (567796/567796), done.
|
|
[dan@s30 test]$ git clone https://github.com/moodle/moodle.git test2
|
Cloning into 'test2'...
|
remote: Reusing existing pack: 765394, done.
|
remote: Counting objects: 199, done.
|
remote: Compressing objects: 100% (175/175), done.
|
remote: Total 765593 (delta 72), reused 56 (delta 15)
|
Receiving objects: 100% (765593/765593), 300.16 MiB | 14.88 MiB/s, done.
|
Resolving deltas: 100% (547431/547431), done.
|