2014-09-11 39 views
0

當我從克隆中拉出chages時,它反映在服務器中,反之亦然。但是當我推它顯示錯誤。我有一個Git存儲庫。我克隆了存儲庫,委託我的本地更改。當我將更改推送到服務器時,它顯示錯誤

錯誤消息:

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) 
+0

你得到什麼錯誤? – 2014-09-11 05:23:17

+0

你能談談這個錯誤嗎? – 2014-09-11 05:59:35

+0

我已經發布了錯誤 – 2014-09-12 08:51:48

回答

0

如果是從其他用戶的存儲庫的克隆中,origin遠程(假設你推到origin)鏈接到該用戶的回購。

爲了提交和推送您的更改,您首先必須從該叉中分叉該用戶的回購和克隆。這樣做會將您的遙控器設置爲您的回購,並且您可以隨心所欲地提交和推送。

您可以在.git/config文件中查看您的遙控器,如果仍有問題,請更正它們。

+0

的截圖謝謝你的幫助,叉子的意思正是我要做的 – 2014-09-12 08:51:01

+0

很高興我可以幫忙,請把它標記爲正確答案 – earthican 2014-09-12 10:19:19

相關問題