Ina*_*lla 11 windows git bitbucket git-push
我刚为我的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
Run Code Online (Sandbox Code Playgroud)
任何帮助都很有用.
谢谢
Pra*_*ind 26
将Git缓冲区大小增加到repo的最大单个文件大小:
git config --global http.postBuffer 157286400
Run Code Online (Sandbox Code Playgroud)
Dob*_*Elf 10
我很欣赏这是一个老问题,但以前的建议对我不起作用(我从 中得到了同样的错误git fetch)。对我有用的是:
git gc
git fsck
Run Code Online (Sandbox Code Playgroud)