Git推错误。

时间:2015-01-05 08:36:19

标签: git

我是新来的Git。我正在尝试将我的本地更改推送到中央/远程存储库。但是

git push remoteRepo remoteBranch  

不适合我。我收到了这个错误。

Counting objects: 6, done.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (5/5), 1.26 KiB, done.
Total 5 (delta 1), reused 0 (delta 0)
remote: error: refusing to update checked out branch: refs/heads/master
remote: error: By default, updating the current branch in a non-bare repository
remote: error: is denied, because it will make the index and work tree inconsistent
remote: error: with what you pushed, and will require 'git reset --hard' to match
remote: error: the work tree to HEAD.
remote: error: 
remote: error: You can set 'receive.denyCurrentBranch' configuration variable to
remote: error: 'ignore' or 'warn' in the remote repository to allow pushing into
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 some
remote: error: other way.
remote: error: 
remote: error: To squelch this message and still keep the default behaviour, set
remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.
To ssh://muneeb@192.168.15.167/home/muneeb/gitRepo_CLI
 ! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to 'ssh://muneeb@192.168.15.167/home/muneeb/gitRepo_CLI'

我尝试git config --bool core.bare true。并删除.git以外的所有文件。但结果没有变化。再次提到上面提到的错误。

1 个答案:

答案 0 :(得分:2)

将工作树更改为头,尝试运行:

git reset --hard

如果您是唯一从事该项目的人,您可以做的是:

git checkout master
git push origin + HEAD