Git推送错误。

Git推送错误。,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: refu

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

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以外的所有文件。但结果没有变化。再次获取上述错误

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

git重置——硬的

如果您是项目的唯一工作人员,您可以做的是:

git签出主机

git push origin+HEAD

您能再解释一下吗。我是git新手。详细解释请参见:,1+,谢谢您的帮助。谢谢原因是,在回购协议(本地和远程)上,我的工作分支是相同的。这就是为什么我会犯那个错误。