githooks-pre-push-template.sh 234 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 #!/usr/bin/env bash # .githooks/pre-push — run scripts/test.sh before every push. # No --no-verify: the claude-code hook deny-no-verify.sh also blocks it. set -euo pipefail cd "$(git rev-parse --show-toplevel)" ./scripts/test.sh