git - Very slow download from GitHub -


when cloning repository github download rate between 50-100 kib/sec (staying stable) while of time have 10 mib/sec. when cloning same repository different machine (= different global ip) full speed.

does github impose rate limit on repository cloning? repository in question quite big (~100 mib) , clone twice day.

do have massive binaries committed in repos? might it.

otherwise, @ optimizing ci's behavior. instead of:

git submodule update [--recursive] 

you want:

git submodule update [--recursive] --depth 1 

ci doesn't need whole repo history, target state. more details here: git shallow submodules


Comments

Popular posts from this blog

Java 8 + Maven Javadoc plugin: Error fetching URL -

android - How to delete or change the searchview icon inside the SearchView actionBar? -

c++ - Msgpack packing bools bug -