Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
nop_slide
on March 8, 2016
|
parent
|
context
|
favorite
| on:
CocoaPods downloads max out five GitHub server CPU...
I found the solution humorous. Ironically shallow clones are causing the problems, so fetch the max :)
$ git fetch --depth=2147483647
alblue
on March 8, 2016
[–]
The problem is that the initial clone is depth=1, then subsequent fetches are depth=MAX. If you did clone depth=MAX in the first place it is faster to serve.
Shallow (depth=1) can be converted into a full clone with the above.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
$ git fetch --depth=2147483647