管理使用Git +网站后收到钩:错误推变化(Managing website using git +

2019-06-25 05:05发布

问:我如何把我的本地提交到我的开发服务器如果worktree不裸?

我的情况:

  1. 我建立了我的git开发服务器上,这样,当我推的局部变化,它们被添加到一个分离的工作树(如这里所描述和很像这个职位 )。
  2. 然后,我经历了运行开发服务器(例如,在git的问题git status ),因为混帐找不到工作树。
  3. 我问了一圈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命令)。

Answer 1:

为什么不:

  • 你推到提交裸回购
  • 设置上开发回购然后将进入非裸开发回购和检出右支,从裸回购拉动新的提交后,接收挂钩?

这就是你的链接描述(与分离工作树),但它设置在裸回购钩:

$ mkdir /var/www/www.example.org
$ cat > hooks/post-receive
#!/bin/sh
GIT_WORK_TREE=/var/www/www.example.org git checkout -f
$ chmod +x hooks/post-receive


Answer 2:

与仓库工作是不是你想要做什么。 你需要,做了git的结帐指数到Web服务器的目录你的dev的服务器上的纯仓库后,接收挂钩。 这样一来,它只是文件。 你不必担心它是否纯仓库,有一个工作树,或其他任何混帐相关。

git checkout-index -f -a --prefix=/var/www/htdocs/mywebsite/ (注意斜杠-这是很重要的)

-f标志将强制所有现有文件的覆盖和-a标志将包括所有文件。



Answer 3:

你只需要小心你正在尝试做的。

git status用于告诉你,你的工作树的状态。 这不应该是你的情况是有用的。

另一方面有, git push是一个纯仓库完全有效的。 这应该只是为你工作。

如果你是想看看变化,你可以用git的差异。 你只需要指定哈希git diff $oldref $newref

如果要列出特定更改的文件提交使用git show --pretty="format:" --name-only $newref

如果要列出一个文件使用的内容git show $newref -- $filepath



Answer 4:

我已经制定了一个解决方案,是可以接受的,但不是很理想。 基本上,我只是通过编辑我的配置文件绕过这个问题的时候,我需要改变开发推到我的直播服务器。

配置文件,它允许开发者推送本地更改到开发:

[core]
        repositoryformatversion = 0
        filemode = true
        bare = true

推配置文件时,开发改变生活:

[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        worktree = /var/www/example.com/httpd/

优点

  1. 作品
  2. 有一次,我已经改变了配置文件推住,回购被“锁定”和其他开发商无法更改推
  3. 不是一个巨大的问题,因为我需要登录到dev反正来处理数据库迁移

缺点 :基本上只是它的,我敢肯定,可以自动化,如果我知道如何正确地做工作。

注:我喜欢@建立,收到后钩有条件也推到活动服务器的vonC的建议。 作出更改后收到钩是很简单的,但我不明白是什么触发将是钩子会回应。 我很乐意听到的建议,虽然:)



文章来源: Managing website using git + post-receive hook: error pushing changes
标签: git web push