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后的内容.

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

被折叠的 条评论
为什么被折叠?



