pearkes / gethub

A utility for cloning and fetching your remote git repositories from GitHub.
MIT License
217 stars 266 forks source link

Too many open files #9

Closed pearkes closed 11 years ago

pearkes commented 11 years ago

Once you have a certain number of repositories you may need to raise your ulimit.

ulimit -S -n 2048 # or whatever number
vinc commented 11 years ago

I thought about this issue and maybe we should limit the concurrency while doing the updates? This can be done by using buffered channels as semaphores.