Sha256: 108b6a0264181a1aa57df2ea077cea76d6742e28dfc7534025a9e0beb6a41f82

Contents?: true

Size: 405 Bytes

Versions: 10

Compression:

Stored size: 405 Bytes

Contents

#!/bin/sh
#
# An example hook script to verify what is about to be committed
# by applypatch from an e-mail message.
#
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit.
#
# To enable this hook, rename this file to "pre-applypatch".

. git-sh-setup
test -x "$GIT_DIR/hooks/pre-commit" &&
        exec "$GIT_DIR/hooks/pre-commit" ${1+"$@"}
:

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
dandelion-0.6.0 spec/fixtures/repo_submodule.git/hooks/pre-applypatch.sample
dandelion-0.5.4 spec/fixtures/repo_submodule.git/hooks/pre-applypatch.sample
dandelion-0.5.3 spec/fixtures/repo_submodule.git/hooks/pre-applypatch.sample
dandelion-0.5.2 spec/fixtures/repo_submodule.git/hooks/pre-applypatch.sample
dandelion-0.5.1 spec/fixtures/repo_submodule.git/hooks/pre-applypatch.sample
dandelion-0.5.0 spec/fixtures/repo_submodule.git/hooks/pre-applypatch.sample
dandelion-0.4.17 spec/fixtures/repo_submodule.git/hooks/pre-applypatch.sample
dandelion-0.4.16 spec/fixtures/repo_submodule.git/hooks/pre-applypatch.sample
dandelion-0.4.15 spec/fixtures/repo_submodule.git/hooks/pre-applypatch.sample
dandelion-0.4.14 spec/fixtures/repo_submodule.git/hooks/pre-applypatch.sample