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
Post a Comment