git push代碼報錯

1、最近搞了一個git倉庫,搞完後居然發現蛋疼git不能push本地的文件到遠程服務器上。

2、服務器搭建很簡單。裝完就能用了。但使用起來就覺得沒有svn好用,git服務器也就開源用的多,所以在權限控制方面顯得很笨拙,對於公司的代碼版本倉庫有時候就顯得不是很合適。

3、服務端和客戶端的配置方法,網上很多。這裏我是按照http://tech.ddvip.com/2013-06/1372453117198128.html這個網址的方法來配置的,當然,git的客戶端也有很多選擇,看個人喜好。

4、配置完成之後,我們在遠端服務器上創建一個項目

[root@appservertest02 ]# mkdir zhxy
[root@appservertest02 ]# cd zhxy/
[root@appservertest02 zhxy]# git init --bare

5、在初始化遠程倉庫時最好使用 git --bare init   而不要使用:git init

如果使用了git init初始化,則遠程倉庫的目錄下,也包含work tree,當本地倉庫向遠程倉庫push時,   如果遠程倉庫正在push的分支上(如果當時不在push的分支,就沒有問題), 那麼push後的結果不會反應在work tree上,  也即在遠程倉庫的目錄下對應的文件還是之前的內容,必須得使用git reset --hard才能看到push後的內容。

6、給git項目賦予權限

chown  -R git.git zhxy

7、做完這些之後,想把本地的代碼提交上來。悲劇的事情發生了

在使用Git Push代碼到數據倉庫時,提示如下錯誤:
[remote rejected] master -> master (branch is currently checked out)
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 [email protected]:/var/git.server/.../web
 ! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to '[email protected]:/var/git.server/.../web'

8、碰到了一堆問題,剛開始還以爲是權限問題。後來在網上找了下。原來是git默認是不允許push代碼到服務器上的。要想把代碼提交上來,得改配置文件。

這是由於git默認拒絕了push操作,需要進行設置,修改.git/config添加如下代碼:

   [receive]
   denyCurrentBranch = ignore


注意上面修改的是代碼倉庫的config,而不是本地分支的config

9、加上這段,重新push下就ok了。

git push  origin  master

http://blog.csdn.net/wfdtxz/article/details/7973608,這個是創建git分支的用法,當然也可以用客戶端實現。


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章