git push error HTTP code = 413

参照http://blog.csdn.net/passion_wu128/article/details/8216086中搭建的gitlab服务器提交的时候总是出现如下错误:


error: RPC failed; result=22, HTTP code = 413

fatal: The remote end hung up unexpectedly

fatal: The remote end hung up unexpectedly


这跟git的postBuffer变量值没有关系。

(如果code = 411,则是由postBuffer引起的,可以在客户端执行

git config --global http.postBuffer 52428800,改为最大50M)


参照这篇帖子里面的办法解决了此问题:

http://stackoverflow.com/questions/7489813/github-push-error-rpc-failed-result-22-http-code-413


其实就是将http 协议改为ssh认证就可以了

git remote set-url origin [email protected]:GitRepoName.git
github.com是你的服务器域名,我的是192.168.1.120

GitRepoName.git是git仓库名


当然还要通过ssh认证

客户端执行命令:

ssh-keygen -t rsa -C "[email protected]"

然后三次回车或者指定密钥路径和密码,默认产生的密钥和公钥在登录用户的.ssh文件夹下.

(密码必须放在用户的.ssh文件夹下)


然后使用[email protected]登录gitlab管理界面,在用户的profile中add public key

git push error HTTP code = 413_第1张图片

保存就可以了,此公钥的内容会自动追加到服务器中的/home/git/.ssh/authorized_keys文件中。

(不要直接将此公钥拷贝到authorized_keys文件中

重启gitlab服务

sudo /etc/init.d/gitlab restart

认证成功后push 和 pull的时候就不需要再输入用户名和密码了,而且刚才的错误也没有了。


今天(2013/01/09)发现最好的解决办法是修改nginx.conf,我的路径是/etc/nginx/nginx.conf

在http中加入 client_max_body_size 50m, 这个值默认是1M.(以前对nginx不熟悉,根本不知道这个配置,找了好久终于解决这个问题了)

重启gitlab服务

sudo /etc/init.d/gitlab restart

Ok了,小于50M的东西都可以使用http协议提交了。

你可能感兴趣的:(http,code,git,push,4)