当前位置:   article > 正文

git push 413问题及git设置ssh提交_git 413

git 413
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
  • 1
  • 2
  • 3

网上查了很多方法,都说是设置git http提交的大小

git config http.postBuffer 524288000
  • 1

发现根本没用,无奈只能goolgle,发现错误码411时设置git http提交的大小才有用。413最直接的办法就是用ssh提交。

设置ssh提交方法
1、设置用户名密码

git config --global user.name xxx
git config --global user.email xxx@xxx.com
  • 1
  • 2

2、生成SSH key

ssh-keygen -t rsa -C "xxx@xxx.com" 
  • 1

根据提示生成ssh key,windows路径在

C:\Users\xxx\.ssh
  • 1

id_rsa.pub就是公有秘钥
在这里插入图片描述

3、设置SSH地址

git remote set-url origin git@xxx.git
  • 1

4、远程设置
去到你的github或gitlab地址,以gitlab为例。找到ssh
在这里插入图片描述
在这里插入图片描述
5、打开公钥并拷贝所有内容到gitlab的添加秘钥
用editplus等工具打开id_rsa.pub并拷贝所有内容,粘贴到网页上要输入ssh key的位置,然后点击Add Key即可。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/511038
推荐阅读
相关标签
  

闽ICP备14008679号