美文网首页
Git错误日志记录

Git错误日志记录

作者: 雨田君c | 来源:发表于2020-03-07 23:49 被阅读0次

1. unable to rewind Remote Procedure Call post data - try increasing http.postBuffer

原因:一次提交量过大 需要增大postBuffer
解决:

git config --global http.postBuffer 你所需要的量

参考:https://www.cnblogs.com/laogaoyang/p/6071560.html

2.RPC failed; curl 55 The requested URL returned error: 401

原因:无权限
解决:1.加入ssh密钥,2.第一次无master 所以用 :

git push -u origin --all

而不是用:

git push -u origin master

可能是我还没创建分支导致?

3 warning: You appear to have cloned an empty repository.

git 仓库得在空文件下创建

相关文章

网友评论

      本文标题:Git错误日志记录

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