Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork939
Closed
Labels
Milestone
Description
I've implemented theProgress
class to implement a nice progress bar:
I'm then using it, for example here:
And then, when I clone a very large repository (like mozilla's gecko):
% git hub clone mozilla/gecko-devPulling from github |████████████████████████████████|Successfully cloned `https://github.com/guyzmo/git-repo` into `./git-repo`!
the progress bar is "progressing" (i.e. incrementing from 0 to 100%), but it shows up only at the very end of the fetching, after hanging for a long while. I started to debug it, and it looks like it's related to subprocess stuff.
Though, I might be implementing it wrong, which is why I'm asking here while I'm still debugging that issue.