一、最近搞了一個git倉庫,搞完後竟然發現蛋疼git不能push本地的文件到遠程服務器上。html
二、服務器搭建很簡單。裝完就能用了。但使用起來就以爲沒有svn好用,git服務器也就開源用的多,因此在權限控制方面顯得很笨拙,對於公司的代碼版本倉庫有時候就顯得不是很合適。git
三、服務端和客戶端的配置方法,網上不少。這裏我是按照http://tech.ddvip.com/2013-06/1372453117198128.html這個網址的方法來配置的,固然,git的客戶端也有不少選擇,看我的喜愛。web
四、配置完成以後,咱們在遠端服務器上建立一個項目bash
[root@appservertest02 ]# mkdir zhxy [root@appservertest02 ]# cd zhxy/ [root@appservertest02 zhxy]# git init --bare
五、在初始化遠程倉庫時最好使用 git --bare init 而不要使用:git init服務器
若是使用了git init初始化,則遠程倉庫的目錄下,也包含work tree,當本地倉庫向遠程倉庫push時, 若是遠程倉庫正在push的分支上(若是當時不在push的分支,就沒有問題), 那麼push後的結果不會反應在work tree上, 也即在遠程倉庫的目錄下對應的文件仍是以前的內容,必須得使用git reset --hard才能看到push後的內容。app
六、給git項目賦予權限less
chown -R git.git zhxy
七、作完這些以後,想把本地的代碼提交上來。悲劇的事情發生了ide
在使用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 git@192.168.1.X:/var/git.server/.../web ! [remote rejected] master -> master (branch is currently checked out) error: failed to push some refs to 'git@192.168.1.X:/var/git.server/.../web'
八、碰到了一堆問題,剛開始還覺得是權限問題。後來在網上找了下。原來是git默認是不容許push代碼到服務器上的。要想把代碼提交上來,得改配置文件。svn
這是因爲git默認拒絕了push操做,須要進行設置,修改.git/config添加以下代碼:ui
[receive]
denyCurrentBranch = ignore
注意上面修改的是代碼倉庫的config,而不是本地分支的config
九、加上這段,從新push下就ok了。
git push origin master
http://blog.csdn.net/wfdtxz/article/details/7973608,這個是建立git分支的用法,固然也能夠用客戶端實現。