53

我有一个 Git 存储库。我已经克隆了存储库并且可以提交我的本地更改。当我将更改推送到服务器时,它可以工作。

一旦我创建了一个分支,我就签出该分支,提交我的工作,然后签出 master 分支。然后我将本地更改合并到主分支中。当我尝试推送到服务器时,出现以下异常:

Welcome to Git (version 1.7.11-preview20120620)

Run 'git help git' to display the help index.
Run 'git help <command>' to display help for specific commands.

$ git push origin master:master
 Counting objects: 9, done.
 Delta compression using up to 4 threads.
 Compressing objects: 100% (7/7), done.
 Writing objects: 100% (8/8), 13.68 KiB, done.
 Total 8 (delta 2), reused 1 (delta 0)
 Unpacking objects: 100% (8/8), done.
 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 c:/jGit
 ! [remote rejected] master -> master (branch is currently checked out)
 error: failed to push some refs to 'c:/gitRepository'

一种解决方案是运行以​​下命令:

git config receive.denyCurrentBranch ignore

在此之后它可以工作,但我想知道为什么我需要使用这个选项。这是唯一的选择吗?这样做的后果是什么?

我真正想做的是创建分支,将它们合并到主分支中,然后将我的更改推送到服务器。

4

6 回答 6

31

为什么 Git 不允许你推送到非裸仓库

原海报说:

一种解决方案是运行以​​下命令:

git config receive.denyCurrentBranch ignore

在此之后它可以工作,但我想知道为什么我需要使用这个选项。这是唯一的选择吗?这样做的后果是什么?

正如我在回答类似问题时指出的那样,从 Git 版本 1.6.2 开始,Git 默认不会让您推送到非裸存储库。这是因为该git push命令仅更新远程存储库上的分支和HEAD引用。它不做的也是更新该非裸远程中的工作副本和暂存区域。

因此,当您git status在远程仓库中使用时,您会看到该仓库的先前状态仍然存在于工作副本中(并暂存在索引中):

$ git status
On branch master
Changes to be committed:
  (use "git reset HEAD <file>..." to unstage)

        new file:   previous-state.txt

receive.denyCurrentBranch如果您查看当您第一次尝试将设置设置为默认值的情况下推送到非裸远程仓库时收到的错误消息,refuse您会看到该消息告诉您基本相同的事情:

error: refusing to update checked out branch: refs/heads/master
error: By default, updating the current branch in a non-bare repository
error: is denied, because it will make the index and work tree inconsistent
error: with what you pushed, and will require 'git reset --hard' to match
error: the work tree to HEAD.
error:
error: You can set 'receive.denyCurrentBranch' configuration variable to
error: 'ignore' or 'warn' in the remote repository to allow pushing into
error: its current branch; however, this is not recommended unless you
error: arranged to update its work tree to match what you pushed in some
error: other way.

你真的应该只推送到裸 Git 存储库

正如在其他一些答案中所指出的那样,由于上面指出的原因以及 Git 本身告诉您的原因,您不应该真正推送到非裸存储库。

因此,就像这个答案所说的那样,将现有的非裸仓库转换为裸仓库的一种简单方法是将其重新克隆为裸仓库:

git clone --bare old-repo

或者您可以尝试弄乱core.bare配置设置,如本答案中所述。

于 2014-07-30T18:17:03.073 回答
30

您推送到的服务器应该使用裸存储库。

如何将普通的 Git 存储库转换为裸存储库?

于 2012-09-04T14:57:15.920 回答
12

我遇到了同样的错误,需要将存储库作为在线开发测试页面运行(也就是说,我猜是为了保留一个非裸仓库)。希望我通过使用这一系列命令(从 gi​​t 2.3 开始)启动存储库来解决它:

git init
git config --global user.email "your@mail.here"
git config --global user.name "Your Name"
git commit
git config receive.denyCurrentBranch updateInstead

如此处所示: 无法推送到 git 存储库

于 2017-02-17T07:06:07.067 回答
5

您应该在服务器上有一个裸存储库,而不是一个带有签出工作树的存储库。Git 告诉您它拒绝覆盖当前在服务器上签出的分支。

有关如何将服务器上的非裸存储库转换为裸存储库的信息,请参阅此答案。

于 2012-09-04T15:00:18.227 回答
3

问题的尸检

当一个分支被签出时,提交将添加一个以当前分支的头部作为其父分支的新提交,并将分支的头部移动到该新提交。

所以

A ← B
    ↑
[HEAD,branch1]

变成

A ← B ← C
        ↑
    [HEAD,branch1]

但是如果有人可以在中间推送到那个分支,用户就会进入 git 所说的分离头模式:

A ← B ← X
    ↑   ↑
[HEAD] [branch1]

现在用户不再在 branch1 中,没有明确要求签出另一个分支。更糟糕的是,用户现在在任何分支之外,任何新的提交都只是悬空:

     [HEAD]
        ↓
        C
      ↙
A ← B ← X
        ↑
       [branch1]

假设,如果此时用户签出另一个分支,那么这个悬空提交对于 Git 的垃圾收集器来说是公平的游戏。

于 2014-12-03T03:47:40.253 回答
0

我认为当 man 配置 git update 挂钩以在推送发生后从存储库本身进行部署时,非裸存储库会很有用。只是不要忘记重置存储库。如果您错过了该步骤文件将不会跟踪实际状态...

于 2015-01-04T16:32:51.293 回答