Git常见错误整理

作者: JouyPub | 来源:发表于2018-08-04 12:17 被阅读1次

错误1:Git: fatal: The remote end hung up unexpectedly
解决办法:

> git config --global http.postBuffer 1048576000
> git config --global http.postBuffer 1048576000

错误2:Git error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54

错误信息:

Total 116323 (delta 81906), reused 116320 (delta 81905)
POST git-receive-pack (130907163 bytes)
error: RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date

git 在 pull 或者 push 一个大项目时,可能会碰到出现如题所示的错误。

解决办法:
网络上往往都会说这是由于大文件造成的提交或者拉取失败。但是,经过本人测试,如果是 errno 56,那么应该是有大文件或者提交缓存方面的问题。而 errno 54 则不是这个问题。对于 56 错误的解决方式与网络上大部分文章的一致。都是增大缓存配置,比如下面就是配置提交缓存为 500M。

> git config http.postBuffer 524288000
> git config https.postBuffer 524288000

对于 errno 54 这个错误,经尝试 http 或者 https 协议都无法正常提交。必须改为 ssh 方式来提交代码。也就是必须使用公私钥的方式进行账号验证,并提交代码。
Git配置SSH Key请参考 Git配置SSH Key

错误3:error:The branch ‘testing’ is not fully merged
解决办法:强制删除

# 普通删除
git branch -d branch_name

# 强制删除
git branch -D branch_name

相关文章

  • Git常见错误整理

    错误1:Git: fatal: The remote end hung up unexpectedly解决办法: ...

  • Git常见错误整理

    错误1:Git: fatal: The remote end hung up unexpectedly 解决办法:...

  • git 常见错误整理

    git remote: HTTP Basic: Access denied 错误解决办法 问题描述:git pus...

  • git clone 常见错误整理

    错误1:Git: fatal: The remote end hung up unexpectedly 解决办法:...

  • Git常见问题汇总

    12 git 常见错误解决方法 —————————————————————————————— 命令:git pul...

  • Git 常见错误

    如果commit已经提交, 版本出错的解决方法 通过哈希值回退版本 查看 Git commit 记录 取得之前的哈...

  • 常见git错误

    使用git在本地创建一个项目的过程 $ makdir ~/hello-world ...

  • git 常见错误

    错误 解决 不限制缓存 不限制网速 如果依旧clone失败,则首先浅层clone,然后更新远程库到本地

  • Git 常见错误

    fatal:refusing to merge unrelated histories 出现原因 使用git pu...

  • Git常见错误

    xcrun: error: invalid active developer path 使用终端克隆github的...

网友评论

    本文标题:Git常见错误整理

    本文链接:https://www.haomeiwen.com/subject/rqxmvftx.html