git push:receive.denyCurrentBranch 推送错误解决

在执行git init后,尝试向服务器推送时遇到receive.denyCurrentBranch错误。为解决此问题,可以参照相关教程,在服务端进行配置,将receive.denyCurrentBranch设置为ignore。

git init后,客户端向服务器推送,结果报错。

https://www.cnblogs.com/jeffry/p/5446213.html

http://blog.sina.com.cn/s/blog_5dc29fcc01011hvr.html

remote: error: is denied, because it will make the index and work tree inconsis
ent
remote: error: with what you pushed, and will require 'git reset --hard' to mat
h
remote: error: the work tree to HEAD.
remote: error:
remote: error: You can set 'receive.denyCurrentBranch' configuration variable t

remote: error: 'ignore' or 'warn' in the remote repository to allow pushing int

remote: error: its current branch; however, this is not recommended unless you
remote: error: arranged to update its work tree to match what you pushed in som

remote: error: other way.
remote: error:
remote: error: To squelch this message and still keep the default behaviour, se

结果就需要在服务端设置

git config receive.denyCurrentBranch=ignore

这是由于git默认拒绝了push操作,需要进行设置,
git config receive.denyCurrentBranch=ignore
或修改.git/config添加如下代码:

    [receive]
    denyCurrentBranch = ignore

在初始化远程仓库时最好使用 git --bare init   而不要使用:git init
   如果使用了git init初始化,则远程仓库的目录下,也包含work tree,
当本地仓库向远程仓库push时,   如果远程仓库正在push的分支上
(如果当时不在push的分支,就没有问题), 
那么push后的结果不会反应在work tree上,  
也即在远程仓库的目录下对应的文件还是之前的内容,必须得使用git reset --hard才能看到push后的内容.

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值