Commit 771fc83
committed
fix(git-hooks): add missing husky wrappers for commit-msg and pre-push
Added missing .husky/commit-msg and .husky/pre-push wrappers that call
the canonical hooks in .git-hooks/. Updated .husky/pre-commit to call
.git-hooks/pre-commit directly instead of the old .husky/security-checks.sh.
This fixes the issue where AI attribution wasn't being stripped from
commit messages because husky wasn't triggering the commit-msg hook.
Hook flow:
Git → .husky/_/commit-msg → .husky/commit-msg → .git-hooks/commit-msg
The .git-hooks/ directory contains the canonical hook implementations
that should be called by the husky wrappers.1 parent d92b2d6 commit 771fc83
3 files changed
+5
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
0 commit comments