From 7e422ee332356633ee678f4553514373587b794b Mon Sep 17 00:00:00 2001 From: Marcus Summers Date: Wed, 6 May 2026 09:42:06 -0400 Subject: [PATCH] githooks: mark pre-commit executable The pre-commit hook (which enforces SUMMARY.md links for new articles) was tracked at mode 100644, so even with `core.hooksPath=.githooks` configured, git silently skipped it. Bump tracked mode to 100755 so fresh clones get the working hook without a manual chmod step. Discovered while installing the wiki-commit/hooks setup on MajorMac. No content change; .githooks/ is outside the MkDocs source so this will not alter the rendered notes.majorshouse.com site. Co-Authored-By: Claude Opus 4.7 (1M context) --- .githooks/pre-commit | 0 1 file changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 .githooks/pre-commit diff --git a/.githooks/pre-commit b/.githooks/pre-commit old mode 100644 new mode 100755