赞
踩
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 http提交的大小
git config http.postBuffer 524288000
发现根本没用,无奈只能goolgle,发现错误码411时设置git http提交的大小才有用。413最直接的办法就是用ssh提交。
设置ssh提交方法
1、设置用户名密码
git config --global user.name xxx
git config --global user.email xxx@xxx.com
2、生成SSH key
ssh-keygen -t rsa -C "xxx@xxx.com"
根据提示生成ssh key,windows路径在
C:\Users\xxx\.ssh
id_rsa.pub就是公有秘钥
3、设置SSH地址
git remote set-url origin git@xxx.git
4、远程设置
去到你的github或gitlab地址,以gitlab为例。找到ssh
5、打开公钥并拷贝所有内容到gitlab的添加秘钥
用editplus等工具打开id_rsa.pub并拷贝所有内容,粘贴到网页上要输入ssh key的位置,然后点击Add Key即可。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。