我有一个Git存储库。我克隆了存储库,委托我的本地更改。当我将更改推送到服务器时,它显示错误

时间:2014-09-11 05:16:05

标签: tortoisegit

当我从克隆中提取更改时,它会反映在服务器中,反之亦然。但是当我推它时显示错误。

错误讯息:

git.exe push --progress  "origin" master:master

Counting objects: 11, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (6/6), done.
Writing objects: 100% (6/6), 474 bytes | 0 bytes/s, done.
Total 6 (delta 3), 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 //INCHNLRDFS06/CUB Ebanking$/GIT_Ebank
! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to '//INCHNLRDFS06/CUB Ebanking$/GIT_Ebank'

git did not exit cleanly (exit code 1) (1029 ms @ 9/10/2014 6:43:09 PM)

1 个答案:

答案 0 :(得分:0)

如果您要从其他用户的存储库进行克隆,则origin遥控器(假设您正在推送到origin)与该用户的存储库相关联。< / p>

为了提交和推送您的更改,您首先必须从该fork分叉该用户的repo并克隆。这样做会将您的遥控器设置为您的回购,您可以随意提交和推送。

您可以在.git/config文件中查看您的遥控器,如果您仍然遇到问题,请更正它们。

相关问题