I'm on debian. I'm using git to pull stuff from repositories. My git version is:
$ git --version
git version 1.9.2
I'm pulling from a remote repo, and my netspeed tells me it's downloading but my git pull is at a certain percentage. Let me share with an actual attempt:
$ git pull origin master --verbose
POST git-upload-pack (935 bytes)
remote: Counting objects: 62, done.
remote: Compressing objects: 100% (62/62), done.
Unpacking objects: 22% (14/62)
Now as can be seen, it's either stuck or is at 22% and the number will change only when it's 23%. Now is there a way to make it show something something like 22.10% and like that, so I can find in real-time what is happening?
No, the builtin/unpack-objects.c#unpack_all(void)
function calls display_progress()
only for each object unpacked:
for (i = 0; i < nr_objects; i++) {
unpack_one(i);
display_progress(progress, i + 1);
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With