Git push代码的时候报错:
$ git push joe wechat2 Username for 'http://git.xxx.com': joe.le@xxx.com Password for 'http://joe.le@xxx.com@git.xxx.com': Counting objects: 428, done. Delta compression using up to 8 threads. Compressing objects: 100% (81/81), done. Writing objects: 100% (229/229), 9.98 MiB | 0 bytes/s, done. Total 229 (delta 173), reused 198 (delta 146) efrror: RPC failed; result=22, HTTP code = 413 atal: The remote end hung up unexpectedly fatal: The remote end hung up unexpectedly Everything up-to-date
搜索关键字:‘fatal: The remote end hung up unexpectedly’ 和 ‘efrror: RPC failed; result=22, HTTP code = 413’
说需要设置上传大小:
$ git config http.postBuffer 524288000
我这边的确也设置了,push的时候还是报这样的错。
搜索关键字:‘Delta compression using up to 8 threads’
说需要设置提交格式:
$ git config core.autocrlf true
我也去设置了,但是还是报错,最后给git管理员说明,说是需要设置ssh提交。
具体解决方案:
1、本机设置hosts对应服务器地址
192.168.1.1 git.xxx.com
2、生成ssh key关联到gitlab
$ ssh-keygen -t rsa -C “joe.le@xxx.com”按3个回车,密码为空。把id_rsa.pub里面的内容添加ssh key到git上面。
3、重设http为git地址
$ git remote set-url joe git@git.xxx.com:joe.le/frontend.git
接着最后一次push成功,也不需要输入密码了。
相关推荐
result=18, HTTP code = 200 fatal: The remote end hung up unexpectedly fatal: 过早的文件结束符(EOF) fatal: index-pack failed Solution for failed with error: RPC failed; result=18, HTTP code = 200 ...
git首次提交代码到远程仓库提示413错误,错误信息如下 git push --set-upstream origin master Enumerating objects: 153, done. ... HTTP 413 curl 22 The requested URL returned error: 413 Req
Error response from daemon: rpc error: code = FailedPrecondition desc = node y2qsyjdbfmm4tjwh4p9wqlmq1 is not down and can’t be removed 解决(需要把active状态的节点的docker服务关闭;同时在manager节点中...
RPC failed; curl 18 transfer closed with outstanding read data remaining 在度娘上找到的方法都是说是:缓存区溢出,只要加大缓存区就可以了,然后跟着网上的说法一顿操作,结果发现依然是这个问题。 网上的...
解决fatal:remote error:You can’t push to git://github.com/username/*.git问题的办法 今天Git push的时候 fatal:remote error: You can't push to git://github.com/username/*.git Use git@github....
系统环境:CentOS Linux release 7.6.1810 (Core) 起因:npm构建时报错 ... fatal: unable to access 'https://github.com/nhn/raphael.git/': Failed connect to github.com:443; Connection timed out npm
解决ubuntu 14.04的git 错误: gnutls_handshake() failed: Handshake failed
问题描述: 在使用git 进行提交时, 出现上面这个报错, 导致无法提交. 报错大致意思就是创建index.lock文件失败,因为已经存在index.lock文件了. index.lock文件是在.git下面, 而.git是一般是隐藏的, 那么可以通过以下...
- **Failed to add the host to the list of known hosts**:未能将主机添加到已知主机列表中。 - **可能原因**:这通常是由于Jenkins服务器尝试连接到Git仓库服务器时,首次连接时的信任问题。 - **Permission ...
解决ubuntu 14.04版本上的git工具错误gnutls_handshake() failed: Handshake failed。已增加C99支持。
在新的文件夹初始化之后,先git clone 远程地址将项目复制下来。 【master分支】 git status 【红色:修改过的代码,初始在工作区】 git add .【git status====>绿色:代码在暂存区】 git commit -m "第一次" ...
在使用Git进行版本控制时,有时会遇到"fatal: remote error: You can't push to git://github.com/username/*.git"这样的错误提示。这通常意味着您试图向GitHub推送代码,但因为使用的协议不支持写入操作,导致推送...
leetcode 答案 【toc】 git_collect_sub ...RPC failed; curl 56 LibreSSL SSL_read: SSL_ERROR_SYSCALL, errno 54 fatal: the remote end hung up unexpectedly fatal: early EOF fatal: index-pack failed git
torch 项目完整代码,公司无法使用git,所以放了个备份在csdn上 (git clone https://github.com/torch/distro.git ~/torch --recursive)
fatal: the remote end hung up unexpectedly fatal: early EOF fatal: index-pack failed Error: Fetching /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core failed! 这是git报错,在终端运行命令:git ...
从 git commit 消息管理更改日志 命令 有2个可执行命令: bin/控制台 gitlog:branch [path_to_repo] 显示 repo 的分支。 bin/控制台 gitlog:commit [path_to_repo] 显示或导出日志。 该命令支持以下参数: --...
开发案列优质学习资料资源工具与案列应用场景开发文档教程资料
1 安装GIT 代码如下:$ sudo aptitude install git$ sudo aptitude install git-doc git-svn git-email git-gui gitk git软件包包含了大部分Git命令,是必装的软件包,第二行命令也是Git软件包,但是是单独发布的,...
在使用Git进行版本控制时,有时可能会遇到一个错误提示:“fatal: open /dev/null or dup failed: No such file or directory”。这个错误表明Git在尝试访问或操作`/dev/null`设备文件时遇到了问题。`/dev/null`在...