#
mkdir ./.githooks
#
cat << EOF > ./.githooks/pre-commit
#! /bin/bash
set -eo pipefail
echo '[pre-commit] Doing something...'
# ...
EOF
#
git config --local core.hooksPath ./.githooks
#
mkdir ./.githooks
#
cat << EOF > ./.githooks/pre-commit
#! /bin/bash
set -eo pipefail
echo '[pre-commit] Doing something...'
# ...
EOF
#
git config --local core.hooksPath ./.githooks