使用git提交时报错:error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 Request Entity Too Large

Delta compression using up to 4 threads.
Compressing objects: 100% (2364/2364), done.
Writing objects: 100% (4329/4329), 1.15 MiB | 11.20 MiB/s, done.
Total 4329 (delta 2657), reused 3050 (delta 1497)
error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 Request Entity Too Large
fatal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date

问题在于用http提交有上传大小限制,修改上传大小限制使用 git config --global http.postBuffer 52428800 后依然报错;

改为了ssh提交就好了 (git remote -v查询git的提交地址)

git remote set-url origin ssh://[email protected]/hello/etl.git

原文地址:https://www.cnblogs.com/guanbin-529/p/9772625.html

时间: 2024-10-07 03:29:18

使用git提交时报错:error: RPC failed; HTTP 413 curl 22 The requested URL returned error: 413 Request Entity Too Large的相关文章

Permission to *** denied to ***.. The requested URL returned error: 403

git push -u origin masterremote: Permission to ignaciozhuzhu/pressure_test.git denied to ***.fatal: unable to access 'https://[email protected]/ignaciozhuzhu//': The requested URL returned error: 403 此为本地git帐号切换问题. 网上说的git config 之类的都是修改提交用户,而不是推送用户.

git推送到github报错:error: The requested URL returned error: 403 Forbidden while accessing https://github.com

最近使用git命令从github克隆仓库到版本,然后进行提交到github时报错如下: [[email protected] git_test]# git push origin mastererror: The requested URL returned error: 403 Forbidden while accessing https://github.com/jsonhc/git_test.git/info/refs fatal: HTTP request failed 解决办法:参考

解决git提交问题error: The requested URL returned error: 403 Forbidden while accessing

git提交代码时,出现这个错误"error: The requested URL returned error: 403 Forbidden while accessing https" 解决方法: 编辑.git文件夹下的config文件就可以. vim .git/config #改动对于的配置 #原来的url = https://github.com/elitecodegroovy/PhoenixC.git url = https://[email protected]/elitec

Git上传错误:The requested URL returned error: 403

上传文件的时候出现了The requested URL returned error: 403这个错误 问题描述: 电脑已经注册过一个 github 帐号,一直在本机使用,配置过 SSH. 新建另一个 github 帐号,本地建立好项目之后,使用命令:$ git push -u origin master 时出现以下错误: 问题原因: 问题主要出在原注册账号上,系统保存了账号的信息.在使用新帐号时,信息不一致,所以报错 解决方案: 打开cmd,输入命令:rundll32.exe keymgr.d

git使用 User has bean blocked!The requested URL returned error: 403

我用自己电脑上在Coding上创建了一个远程版本库,之后git clone到电脑上,在第一次git push的时候就出现了这个错误: $ git push remote: Coding 提示: User has bean blocked! 用户已被锁定 fatal: unable to access 'https://git.coding.net/yangms/News.git/': The requested URL returned error: 403 之后再提交都是这个错误,删除电脑上的

git 出现 The requested URL returned error: 403

github push错误 fatal: unable to access 'https://github.com/xuzhenguo/authorize.git/': The requested URL returned error: 403 解决方法: vim .git/config 修改前 [remote "origin"] url = https://github.com/xuzhenguo/authorize.git 修改为: [remote "origin&quo

解决github push错误The requested URL returned error: 403 Forbidden while accessing

来源:http://blog.csdn.net/happyteafriends/article/details/11554043 github push错误: [html] view plaincopyprint? git push error: The requested URL returned error: 403 Forbidden while accessing https://github.com/wangz/future.git/info/refs git version 1.7.

解决git clone时报错:The requested URL returned error: 401 Unauthorized while accessing

版本问题,最直接的解决办法就是重新编辑安装git吧: 1. 下载:# wget -O git.zip https://github.com/git/git/archive/master.zip 2. 解压:# unzip git.zip 3. 进入git目录:# cd git-master 4. 编译安装: autoconf ./configure --prefix=/usr/local make && make install 5. 最后别忘了删掉旧的git,并把新版本的git建立软链接

git提交时报错:Updates were rejected because the tip of your current branch is behind

有如下3种解决方法: 1.使用强制push的方法:git push -u origin master -f这样会使远程修改丢失,一般是不可取的,尤其是多人协作开发的时候. 2.push前先将远程repository修改pull下来git pull origin mastergit push -u origin master 3.若不想merge远程和本地修改,可以先创建新的分支:git branch [name]然后pushgit push -u origin [name] 原文地址:https