问:我如何把我的本地提交到我的开发服务器如果worktree不裸?
我的情况:
- 我建立了我的git开发服务器上,这样,当我推的局部变化,它们被添加到一个分离的工作树(如这里所描述和很像这个职位 )。
- 然后,我经历了运行开发服务器(例如,在git的问题
git status
),因为混帐找不到工作树。 - 我问了一圈SO并得到了通风报信 ,我需要设置
bare = false
在我的配置文件,并指定worktree。 甜。
但现在,当我试图把我提交到开发服务器我得到这个错误:
$ git push origin master
xxxx@xxx.xxx.xxx.xxx's password:
Counting objects: 26, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (18/18), done.
Writing objects: 100% (18/18), 2.56 KiB, done.
Total 18 (delta 8), 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 ssh://xxxx@xxx.xxx.xxx.xxx/xxx/xxx/xxxxxx.git
! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to 'ssh://xxxx@xxx.xxx.xxx.xxx/xxx/xxx/xxxxxx.git'
我看到这个其他用户有同样的问题 。 不幸的是,为他工作的解决方案是设置bare = true
在他的配置,这将重建,我在上面的步骤3所遇到的问题。
该错误消息说,
可以设置“receive.denyCurrentBranch”配置变量到远程:错误:“忽略”或“警告”
就我而言,是它确定为我做到这一点? 这听起来不错,但我不使用git足够的熟悉尚未承认一个坏主意,当谈到身边......
编辑
只是要清楚,我已经添加了一个后收到钩,它的工作顺利进行。 问题是,我似乎有之间进行选择bare=true
(并且能够推到开发服务器)和bare=false
(并且能够开发服务器上运行git命令)。