サーチ…


前書き

他の多くのバージョン管理システムと同様に、Gitは特定の重要なアクションが発生したときにカスタムスクリプトを起動する方法を持っています。これらのフックには、クライアント側とサーバー側の2つのグループがあります。クライアント側のフックは、コミットやマージなどの操作によってトリガーされ、サーバー側のフックはプッシュされたコミットの受信などのネットワーク操作で実行されます。これらのフックは、あらゆる理由で使用できます。

フックの取り付け

フックはすべてGitディレクトリのhooksサブディレクトリに格納されています。ほとんどのプロジェクトでは、それは.git/hooksです。

フックスクリプトを有効にするには、 .gitディレクトリのhooksサブディレクトリに適切な名前(拡張子なし)で実行可能なファイルを配置します。

Gitプレプッシュフック

プッシュプッシュスクリプトは、リモートステータスをチェックした後、何かがgit pushれる前にgit pushによって呼び出されます。このスクリプトがゼロ以外の状態で終了すると、何もプッシュされません。

このフックは、次のパラメータで呼び出されます。

 $1 -- Name of the remote to which the push is being done (Ex: origin)
 $2 -- URL to which the push is being done (Ex: https://<host>:<port>/<username>/<project_name>.git)

プッシュされているコミットに関する情報は、次の形式で標準入力に行として提供されます。

<local_ref> <local_sha1> <remote_ref> <remote_sha1>

サンプル値:

local_ref = refs/heads/master
local_sha1 = 68a07ee4f6af8271dc40caae6cc23f283122ed11
remote_ref = refs/heads/master
remote_sha1 = efd4d512f34b11e3cf5c12433bbedd4b1532716f

以下の例のプッシュプッシュスクリプトは、デフォルトのpre-push.sampleから取得されました。これは、新しいリポジトリがgit init初期化されたときに自動的に作成されました

# This sample shows how to prevent push of commits where the log message starts
# with "WIP" (work in progress).

remote="$1"
url="$2"

z40=0000000000000000000000000000000000000000

while read local_ref local_sha remote_ref remote_sha
do
    if [ "$local_sha" = $z40 ]
    then
        # Handle delete
        :
    else
        if [ "$remote_sha" = $z40 ]
        then
            # New branch, examine all commits
            range="$local_sha"
        else
            # Update to existing branch, examine new commits
            range="$remote_sha..$local_sha"
        fi

        # Check for WIP commit
        commit=`git rev-list -n 1 --grep '^WIP' "$range"`
        if [ -n "$commit" ]
        then
            echo >&2 "Found WIP commit in $local_ref, not pushing"
            exit 1
        fi
    fi
done

exit 0


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow