gpt4 book ai didi

git push 致命的 : unable to create thread: Resource temporarily unavailable

转载 作者:IT王子 更新时间:2023-10-29 00:53:21 25 4
gpt4 key购买 nike

我是 git 的新手。我想将大量提交推送到远程服务器,但问题是当我使用

git push origin master

返回错误

Counting objects: 5009, done.
Delta compression using up to 16 threads.
fatal: unable to create thread: Resource temporarily unavailable
error: pack-objects died with strange error

那么我是否可以设置 Delta 压缩的最大线程使用量。

谢谢你的帮助,

陈元

最佳答案

错误:“fatal: unable to create thread: Resource temporarily unavailable”强烈暗示你的服务器内存不足,如果你有一个包含大量大文件的存储库,就会发生这种情况,这可能会导致重新打包占用大量内存或有限的虚拟内存 - 一般情况下,或由于 ulimit 设置而仅针对该帐户。

无论如何,您可以运行以下命令来限制打包可能占用的内存量,方法是登录远程系统(作为运行 git 的用户)并键入这些命令:

git config --global pack.windowMemory "100m"
git config --global pack.packSizeLimit "100m"
git config --global pack.threads "1"

希望这能奏效。

关于git push 致命的 : unable to create thread: Resource temporarily unavailable,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9905257/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com