接收钩子进行网站分段

我试图建立的Git是举办我的网站,这样我可以git pull来获得当前版本工作在本地,然后git push推更改到远程服务器。 我已经设置了它,以便按照我希望的方式工作,但是在推送后,我必须在远程服务器上手动运行git checkout -fgit reset --hard HEAD

我试过把这些放到shell脚本中作为服务器上的post-receive钩子,但它似乎没有任何作用。 我知道脚本正在运行,因为我看到“推送到服务器的变化”,我推动后。 这是后接收钩子:

#!/bin/sh
git reset --hard HEAD
echo "Changes pushed to server."

你的问题的答案在这里:http://toroid.org/ams/git-website-howto

简而言之,你想要做的是将一个“分离的工作树”添加到裸仓库。 通常你认为你的工作树包含.git目录。 裸仓库根据定义没有工作树,但只要它位于与裸仓库不同的目录中,就可以创建它。

post-receive钩子只是一个简单的git checkout -f来将仓库的HEAD复制到工作目录中。 Apache使用它作为它的文档根目录,并且你全都设置好了。 无论何时您推送到裸仓库,Apache都会立即开始提供服务。

我通常会使用它自动推送到临时服务器,以查看“真实”环境是否会对我的更改产生影响。 部署到实时服务器是一个完全不同的故事。 :-)


2015年3月更新

正如我在“将更改推送到远程存储库时发生什么Git警告消息?”中所述,您实际上可以直接将其推送到非裸回购(Git 2.3.0+,2015年2月):

git config receive.denyCurrentBranch updateInstead

相应地更新工作树,但如果有任何未提交的更改拒绝这样做。

这将允许你避免任何post-receive钩子。


(原文解答:2010年10月)

GitFAQ建议非裸回购这个更新后的钩子:
(它可能会给你更多的线索,看看钩子执行过程中究竟发生了什么,注意这是一个更新后的钩子,而不是后接收)

#!/bin/sh
#
# This hook does two things:
#
#  1. update the "info" files that allow the list of references to be
#     queries over dumb transports such as http
#
#  2. if this repository looks like it is a non-bare repository, and
#     the checked-out branch is pushed to, then update the working copy.
#     This makes "push" function somewhat similarly to darcs and bzr.
#
# To enable this hook, make this file executable by "chmod +x post-update".

git-update-server-info

is_bare=$(git-config --get --bool core.bare)

if [ -z "$is_bare" ]
then
    # for compatibility's sake, guess
    git_dir_full=$(cd $GIT_DIR; pwd)
    case $git_dir_full in */.git) is_bare=false;; *) is_bare=true;; esac
fi

update_wc() {
    ref=$1
    echo "Push to checked out branch $ref" >&2
    if [ ! -f $GIT_DIR/logs/HEAD ]
    then
        echo "E:push to non-bare repository requires a HEAD reflog" >&2
        exit 1
    fi
    if (cd $GIT_WORK_TREE; git-diff-files -q --exit-code >/dev/null)
    then
        wc_dirty=0
    else
        echo "W:unstaged changes found in working copy" >&2
        wc_dirty=1
        desc="working copy"
    fi
    if git diff-index --cached HEAD@{1} >/dev/null
    then
        index_dirty=0
    else
        echo "W:uncommitted, staged changes found" >&2
        index_dirty=1
        if [ -n "$desc" ]
        then
            desc="$desc and index"
        else
            desc="index"
        fi
    fi
    if [ "$wc_dirty" -ne 0 -o "$index_dirty" -ne 0 ]
    then
        new=$(git rev-parse HEAD)
        echo "W:stashing dirty $desc - see git-stash(1)" >&2
        ( trap 'echo trapped $$; git symbolic-ref HEAD "'"$ref"'"' 2 3 13 15 ERR EXIT
        git-update-ref --no-deref HEAD HEAD@{1}
        cd $GIT_WORK_TREE
        git stash save "dirty $desc before update to $new";
        git-symbolic-ref HEAD "$ref"
        )
    fi

    # eye candy - show the WC updates :)
    echo "Updating working copy" >&2
    (cd $GIT_WORK_TREE
    git-diff-index -R --name-status HEAD >&2
    git-reset --hard HEAD)
}

if [ "$is_bare" = "false" ]
then
    active_branch=`git-symbolic-ref HEAD`
    export GIT_DIR=$(cd $GIT_DIR; pwd)
    GIT_WORK_TREE=${GIT_WORK_TREE-..}
    for ref
    do
        if [ "$ref" = "$active_branch" ]
        then
            update_wc $ref
        fi
    done
fi

为此,您仍然需要特别允许通过使用以下任一配置设置将更改推送到当前分支:

git config receive.denyCurrentBranch ignore

要么

git config receive.denyCurrentBranch warn

我有完全相同的问题。 在对此链接的回复中:http://toroid.org/ams/git-website-howto - 以下命令已完成:

sudo chmod +x hooks/post-receive

我们错过了首次配置这些东西的sudo权限。

链接地址: http://www.djcxy.com/p/26143.html

上一篇: Receive Hook for Website Staging

下一篇: Yii 2.0 CSRF validation for AJAX request