git push 413问题解决

用git好长时间了,今天提交的时候遇到了一个问题git push
然后
Enumerating objects: 342, done. Delta compression using up to 8 threads Total 298 (delta 46), reused 0 (delta 0) RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 the remote end hung up unexpectedly the remote end hung up unexpectedly
。。。网上各种查,发现是提交的文件太大,导致不能通过
后来查到改下git配置

git config --global http.postBuffer 52428800
改为最大50M,
然后提交,还是不行,后来查到可改为ssh提交
方式如下 不再赘述
https://www.cnblogs.com/lihaiping/p/6021813.html
需要注意的是我用的是码云账号所以,
git config --global user.name “这里填用户名(任意的)”

git config --global user.email “这里填你的邮箱地址(最好是你注册码云的邮箱)”
最后ojbk

你可能感兴趣的:(Git,git,413)