git remote git push 오류 해결 방법

git push 오류:
remote:error:refusing to update checked out branch:refs/heads/master
Total 519109 (delta 115592), 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 /home/jobs/git/jz_smarc_core/.git
 ! [remote rejected] master -> master (branch is currently checked out)
error:   '/home/jobs/git/jz_smarc_core/.git'

오류 분석:
git init를 사용하여 초기화하면 원격 창고의 디렉터리에work tree가 포함되어 있습니다. 로컬 창고가 원격 창고에push할 때 원격 창고가push의 디렉터리에 있으면 (push의 디렉터리에 없으면 문제가 없습니다)push 후의 결과는worktree에 반영되지 않습니다. 즉, 원격 창고의 디렉터리에 대응하는 파일인지 이전의 내용인지.git reset --hard를 사용해야push 후의 내용을 볼 수 있습니다.
다른 사람이나 자신이 사용할 때git --base init를 추천할 수 있도록 원격 창고를 만듭니다.
git init와 git --base init의 차이점 보십시오http://blog.csdn.net/u014159143/article/details/78109094
해결 방법:
원격은 현재 지점에 있기 때문에, 현재 지점을 무시하는 것을 추가합니다.git/config 후 추가
[receive]  
denyCurrentBranch = ignore  
또는
git config --bool core.bare true

좋은 웹페이지 즐겨찾기