git stuck on Unpacking Objects phase

GitGithub

Git Problem Overview


I'm trying to do a git pull from a remote repository in github into a local machine... but git gets stuck on 70% into the "Unpacking objects" phase, with no sign of going anywhere.. (left it for several hours now with no change)

Any suggestion on how to fix this issue?

Is it possible to instruct git to only download the latest commit/version from the remote repository without all the Intermediate states?

Git Solutions


Solution 1 - Git

I had the same problem when I git pull a repository on github.com. I found there were some large files and the connection to github was slow. So maybe you just have to wait patiently before git pulls the whole repository.

Solution 2 - Git

For me the solution was to change protocol specifier from https to git, e.g.:
git clone https://github.com/some/repository
to
git clone git://github.com/some/repository

Edit:
Here's something about the protocols used in Git.
Some highlights:
The downside of the Git protocol is the lack of authentication.
It also requires firewall access to port 9418, which isn’t a standard port that corporate firewalls always allow

Solution 3 - Git

I find that large binary objects (like Adobe Illustrator files, etc.) tend to bog the whole pull/push process down as well.

Which is why I like to use two repositories now for design vs. code.

Solution 4 - Git

You may need to do some clean-up:

git fsck && git gc --prune=now

Solution 5 - Git

> [...] but git gets stuck on 70% into the "Unpacking objects" phase, with no sign of going anywhere

With Git 2.25 (Q1 2020), "git unpack-objects" used to show progress based only on the number of received and unpacked objects, which stalled when it has to handle an unusually large object.

It now shows the throughput as well.

See commit bae60ba (19 Nov 2019) by SZEDER Gábor (szeder).
(Merged by Junio C Hamano -- gitster -- in commit cf91c31, 05 Dec 2019)

> ## builtin/unpack-objects.c: show throughput progress
> Signed-off-by: SZEDER Gábor > > 'git unpack-objects' shows a progress line only counting the number of unpacked objects, so if some of the received objects are unusually large, then that progress might appear to be frozen while processing such a larger object.
> > I just stared at a seemingly stuck progress line for over half a minute, while 'git fetch' was busy receiving a pack with only a couple of objects (i.e. fewer than 'fetch.unpackLimit'), with one of them being over 80MB. > > Display throughput in 'git unpack-objects' progress line, so we show that something is going on even when receiving and processing a large object. > > Counting the consumed bytes is far away from the place that counts objects and displays progress, and to pass around the 'struct progress' instance we would have to modify the signature of five functions and 14 of their callsites: this is just too much churn, so let's rather make it file-scope static. > > 'git index-pack', i.e. the non-unpacking cousin of 'git unpack-objects' already includes throughput in its progress line, and it uses a file-scope static 'struct progress' instance as well.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiongadgadView Question on Stackoverflow
Solution 1 - GitErnestView Answer on Stackoverflow
Solution 2 - GitAl LelopathView Answer on Stackoverflow
Solution 3 - GitEvan K. StoneView Answer on Stackoverflow
Solution 4 - GitRabih KodeihView Answer on Stackoverflow
Solution 5 - GitVonCView Answer on Stackoverflow