error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 解决方案
使用Git提交时报错,代码如下:
$ git push -u origin "master"
Counting objects: 100% (95/95), done.
Delta compression using up to 12 threads
Compressing objects: 100% (92/92), done.
Writing objects: 100% (94/94), 726.86 MiB | 24.37 MiB/s, done.
Total 94 (delta 8), reused 0 (delta 0)
error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly
Everything up-to-date
bash: $: command not found
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-RuUWaZAM-1649129990474)(C:\Users\AI\Desktop\黄柏辉\博客\image\Git413代码解决方案1.png)]
原因:
HTTP上传文件限制了文件大小
此时改变git配置是没有用的,因为这跟本不是git的问题
解决方法:
更换远程仓库地址,我这里换的是SSH
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-0yQEWI5u-1649129990475)(C:\Users\AI\Desktop\黄柏辉\博客\image\Git413代码解决方案.png)]文章来源:https://www.toymoban.com/news/detail-604776.html
第一步 修改地址
git remote set-url origin 复制的地址
第二步 重新上传
git push
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-PuZVCx2N-1649129990476)(C:\Users\AI\Desktop\黄柏辉\博客\image\Git文件大小超过100M2.png)]文章来源地址https://www.toymoban.com/news/detail-604776.html
到了这里,关于error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 解决方案的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!