Git 卡在解包对象阶段

我正在尝试从 github 中的远程存储库做一个 git pull到本地机器..。 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)

对于如何解决这个问题有什么建议吗?

有没有可能指示 git 只从远程存储库下载最新的提交/版本,而不使用所有的 Intermediate 状态?

44963 次浏览

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.

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.

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

[...] 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.

You may need to do some clean-up:

git fsck && git gc --prune=now