在Git中使用receive.denyCurrentBranch有什么后果?
我有一个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
在此之后,它的工作原理,但我想知道为什么我需要使用此选项。 这是唯一的选择吗? 这样做的后果是什么?
我真正想做的是创建分支,将它们合并到主分支中,然后将更改推送到服务器。
您推送的服务器应使用裸存储库。
如何将一个普通的Git仓库转换为裸机?
为什么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
配置设置,详见本答案。
你应该在服务器上拥有一个裸仓库,而不是一个拥有检出工作树的仓库。 Git告诉你它拒绝覆盖当前在服务器上签出的分支。
有关如何将服务器上的非裸仓库转换为裸仓库的信息,请参阅此答案。
链接地址: http://www.djcxy.com/p/49023.html上一篇: What are the consequences of using receive.denyCurrentBranch in Git?