This repository has no description
1#!/usr/bin/env bash
2#
3# git commit-msg hook — lint the message against the Go commit conventions.
4#
5# Installed by pointing core.hooksPath at this directory:
6# ./.tangled/hooks/install.sh
7#
8# Bypass for a single commit with `git commit --no-verify`.
9#
10# Note: jj (jujutsu) does not run git hooks. jj users are covered by the
11# `commit-lint` CI workflow instead, and can lint locally on demand with:
12# .tangled/hooks/commit-msg-lint.sh --rev @
13
14exec "$(dirname "$0")/commit-msg-lint.sh" --file "$1"