git add,git commit之后的git push错误

时间:2012-12-06 02:29:32

标签: git

我编辑了文件和git add filename,然后是git commit -m' message' , 我输入git push,它出现了这个错误。我该如何解决这个问题?

Master:disrupreneurs shaunstanislaus$ git push
Counting objects: 11, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (6/6), done.
Writing objects: 100% (6/6), 1.71 KiB, 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 ec2-user@www.disrupreneurs.org:disrupreneurs
 ! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to 'ec2-user@www.disrupreneurs.org:disrupreneurs'

1 个答案:

答案 0 :(得分:2)

有两种git存储库:

  • 裸存储库用于在开发人员之间共享代码。您通常会从中克隆并推送到它。

  • 非裸非裸回购用于进行编码工作。它们通常是从一个裸仓库中克隆出来的,你通常会推送你的提交

你想要推销的回购不是一个简单的回购,因此有一个签出分支。较新的git版本将不允许你推送到非裸仓库的当前签出分支,因为它会导致你覆盖别人工作,因为非裸仓库应该是其他人的工作仓库。

所以你有树选项: - 按照消息说的那样做:

  

您可以将'receive.denyCurrentBranch'配置变量设置为   remote:错误:远程存储库中的'ignore'或'warn'允许推送   remote:错误:当前分支;但是,除非您这样做,否则不建议这样做   remote:错误:安排更新其工作树以匹配您推送的内容   远程:错误:其他方式。

  • 结帐目标仓库上的另一个分支
  • 或者最好的办法是使用一个裸仓库(git clone --bare)作为共享仓库。