Git 推送错误。
Git Push Error.
我是新手 Git。我正在尝试将我的本地更改推送到 central/remote 存储库。但是
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 之外的所有文件。但结果没有变化。再次出现上述错误。
将工作树更改为头部,尝试 运行:
git 重置 --hard
如果只有你一个人在做这个项目,你可以做的是:
git结帐大师
git 推送原点 +HEAD
我是新手 Git。我正在尝试将我的本地更改推送到 central/remote 存储库。但是
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 之外的所有文件。但结果没有变化。再次出现上述错误。
将工作树更改为头部,尝试 运行:
git 重置 --hard
如果只有你一个人在做这个项目,你可以做的是:
git结帐大师
git 推送原点 +HEAD