Git推送失败HTTP 500卷曲22请求的URL返回错误:500内部服务器错误

问题描述 投票:8回答:2

我刚为我的windows机器设置了带位桶的git。

Git pull正常工作,git push失败时出现以下错误。

$ git push
Counting objects: 10, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (10/10), done.
Writing objects: 100% (10/10), 174.03 KiB | 0 bytes/s, done.
Total 10 (delta 6), reused 0 (delta 0)
error: RPC failed; HTTP 500 curl 22 The requested URL returned error: 500 Internal Server Error
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date

任何帮助都很有用。

谢谢

windows git bitbucket git-push
2个回答
21
投票

将Git缓冲区大小增加到repo的最大单个文件大小:

git config --global http.postBuffer 157286400

1
投票

我仔细看了看,对我来说这是一个no space left on device错误...我的服务器硬盘驱动器没有空间写任何文件!

© www.soinside.com 2019 - 2024. All rights reserved.