git - 设置receive.denycurrentbranch = ignore后仍然无法推送到非裸仓库

时间:2015-07-22 02:27:22

标签: git git-push git-non-bare-repository

我的设置如下:

我在我的mac上运行git版本2.3.2(Apple Git-55)。这有一个非裸git存储库位于~/xyz

然后我在同一台Mac上使用VMWare Fusion运行Windows 7 64位。 VM有git 1.9.5,这是Windows的最新git版本。从VM我可以克隆并从我的mac的非裸仓库~/xyz拉出来,但我不能推动它。我已遵循建议here并在receive.denycurrentbranch=ignore上设置~/xyz但仍向我提供了相同的错误消息:

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'.

我也尝试过设置receive.denycurrentbranch=updateInstead但仍然是相同的错误消息。

我在更改任何git设置的每个实例后重新启动了计算机。

目录~/xyz是我的VM的共享目录,我已确保VM具有对它的读/写访问权。

拜托,有人有什么想法吗?

2 个答案:

答案 0 :(得分:5)

您需要从服务器运行命令,而不是从本地存储系统

推送代码
git config --global receive.denyCurrentBranch ignore

答案 1 :(得分:1)

首先,VM可以使用它想要的任何版本的Git,而不仅仅是旧的和过时的msysgit 1.9.5 one:git for windows提供the latest 2.4.6
无需设置,只需在任意位置解压缩PortableGit-2.4.6-5th-release-candidate-64-bit.7z.exe,然后将其bin文件夹添加到%PATH%

  

我也尝试过设置receive.denycurrentbranch = updateInstead

必须在服务器端设置Git 2.3.0+ feature(请参阅the release notes),而不是客户端。

如果不方便,OP Jason L提及in the comments的解决方法:

  

没有从VM推送到mac git repo,而是从mac中提取VM git repo。